| Server IP : 65.108.144.40 / Your IP : 216.73.217.165 Web Server : Apache/2.4.52 (Ubuntu) System : Linux ubuntu-8gb-hel1-1 5.15.0-173-generic #183-Ubuntu SMP Fri Mar 6 13:29:34 UTC 2026 x86_64 User : dev ( 1000) PHP Version : 8.2.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/dev/ |
Upload File : |
--
-- PostgreSQL database dump
--
-- Dumped from database version 14.15 (Ubuntu 14.15-0ubuntu0.22.04.1)
-- Dumped by pg_dump version 14.15 (Ubuntu 14.15-0ubuntu0.22.04.1)
SET statement_timeout = 0;
SET lock_timeout = 0;
SET idle_in_transaction_session_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SELECT pg_catalog.set_config('search_path', '', false);
SET check_function_bodies = false;
SET xmloption = content;
SET client_min_messages = warning;
SET row_security = off;
SET default_tablespace = '';
SET default_table_access_method = heap;
--
-- Name: accessibility_defaultaccessibility; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.accessibility_defaultaccessibility (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
feature character varying(100) NOT NULL,
filter jsonb NOT NULL,
exclude_all boolean NOT NULL,
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.accessibility_defaultaccessibility OWNER TO erp_user;
--
-- Name: accessibility_defaultaccessibility_employees; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.accessibility_defaultaccessibility_employees (
id bigint NOT NULL,
defaultaccessibility_id bigint NOT NULL,
employee_id bigint NOT NULL
);
ALTER TABLE public.accessibility_defaultaccessibility_employees OWNER TO erp_user;
--
-- Name: accessibility_defaultaccessibility_employees_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.accessibility_defaultaccessibility_employees ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.accessibility_defaultaccessibility_employees_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: accessibility_defaultaccessibility_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.accessibility_defaultaccessibility ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.accessibility_defaultaccessibility_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: asset_asset; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.asset_asset (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
asset_name character varying(255) NOT NULL,
asset_description text,
asset_tracking_id character varying(30) NOT NULL,
asset_purchase_date date NOT NULL,
asset_purchase_cost numeric(10,2) NOT NULL,
asset_status character varying(40) NOT NULL,
expiry_date date,
notify_before integer,
asset_category_id_id bigint NOT NULL,
asset_lot_number_id_id bigint,
created_by_id integer,
modified_by_id integer,
owner_id bigint
);
ALTER TABLE public.asset_asset OWNER TO erp_user;
--
-- Name: asset_asset_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.asset_asset ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.asset_asset_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: asset_assetassignment; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.asset_assetassignment (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
assigned_date date NOT NULL,
return_date date,
return_condition text,
return_status character varying(30),
return_request boolean NOT NULL,
asset_id_id bigint NOT NULL,
assigned_by_employee_id_id bigint NOT NULL,
assigned_to_employee_id_id bigint NOT NULL,
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.asset_assetassignment OWNER TO erp_user;
--
-- Name: asset_assetassignment_assign_images; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.asset_assetassignment_assign_images (
id bigint NOT NULL,
assetassignment_id bigint NOT NULL,
returnimages_id bigint NOT NULL
);
ALTER TABLE public.asset_assetassignment_assign_images OWNER TO erp_user;
--
-- Name: asset_assetassignment_assign_images_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.asset_assetassignment_assign_images ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.asset_assetassignment_assign_images_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: asset_assetassignment_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.asset_assetassignment ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.asset_assetassignment_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: asset_assetassignment_return_images; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.asset_assetassignment_return_images (
id bigint NOT NULL,
assetassignment_id bigint NOT NULL,
returnimages_id bigint NOT NULL
);
ALTER TABLE public.asset_assetassignment_return_images OWNER TO erp_user;
--
-- Name: asset_assetassignment_return_images_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.asset_assetassignment_return_images ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.asset_assetassignment_return_images_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: asset_assetcategory; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.asset_assetcategory (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
asset_category_name character varying(255) NOT NULL,
asset_category_description text NOT NULL,
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.asset_assetcategory OWNER TO erp_user;
--
-- Name: asset_assetcategory_company_id; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.asset_assetcategory_company_id (
id bigint NOT NULL,
assetcategory_id bigint NOT NULL,
company_id bigint NOT NULL
);
ALTER TABLE public.asset_assetcategory_company_id OWNER TO erp_user;
--
-- Name: asset_assetcategory_company_id_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.asset_assetcategory_company_id ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.asset_assetcategory_company_id_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: asset_assetcategory_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.asset_assetcategory ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.asset_assetcategory_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: asset_assetdocuments; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.asset_assetdocuments (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
file character varying(100),
asset_report_id bigint NOT NULL,
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.asset_assetdocuments OWNER TO erp_user;
--
-- Name: asset_assetdocuments_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.asset_assetdocuments ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.asset_assetdocuments_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: asset_assetlot; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.asset_assetlot (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
lot_number character varying(30) NOT NULL,
lot_description text,
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.asset_assetlot OWNER TO erp_user;
--
-- Name: asset_assetlot_company_id; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.asset_assetlot_company_id (
id bigint NOT NULL,
assetlot_id bigint NOT NULL,
company_id bigint NOT NULL
);
ALTER TABLE public.asset_assetlot_company_id OWNER TO erp_user;
--
-- Name: asset_assetlot_company_id_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.asset_assetlot_company_id ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.asset_assetlot_company_id_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: asset_assetlot_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.asset_assetlot ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.asset_assetlot_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: asset_assetreport; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.asset_assetreport (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
title character varying(255),
asset_id_id bigint NOT NULL,
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.asset_assetreport OWNER TO erp_user;
--
-- Name: asset_assetreport_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.asset_assetreport ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.asset_assetreport_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: asset_assetrequest; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.asset_assetrequest (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
asset_request_date date NOT NULL,
description text,
asset_request_status character varying(30),
asset_category_id_id bigint NOT NULL,
created_by_id integer,
modified_by_id integer,
requested_employee_id_id bigint NOT NULL
);
ALTER TABLE public.asset_assetrequest OWNER TO erp_user;
--
-- Name: asset_assetrequest_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.asset_assetrequest ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.asset_assetrequest_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: asset_returnimages; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.asset_returnimages (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
image character varying(100),
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.asset_returnimages OWNER TO erp_user;
--
-- Name: asset_returnimages_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.asset_returnimages ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.asset_returnimages_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: attendance_attendance; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.attendance_attendance (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
attendance_date date NOT NULL,
attendance_clock_in_date date,
attendance_clock_in time without time zone,
attendance_clock_out_date date,
attendance_clock_out time without time zone,
attendance_worked_hour character varying(10),
minimum_hour character varying(10) NOT NULL,
attendance_overtime character varying(10) NOT NULL,
attendance_overtime_approve boolean NOT NULL,
attendance_validated boolean NOT NULL,
at_work_second integer,
overtime_second integer,
approved_overtime_second integer NOT NULL,
is_validate_request boolean NOT NULL,
is_bulk_request boolean NOT NULL,
is_validate_request_approved boolean NOT NULL,
request_description text,
request_type character varying(18),
is_holiday boolean NOT NULL,
requested_data jsonb,
attendance_day_id bigint,
batch_attendance_id_id bigint,
created_by_id integer,
employee_id_id bigint,
modified_by_id integer,
shift_id_id bigint,
work_type_id_id bigint
);
ALTER TABLE public.attendance_attendance OWNER TO erp_user;
--
-- Name: attendance_attendance_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.attendance_attendance ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.attendance_attendance_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: attendance_attendanceactivity; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.attendance_attendanceactivity (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
attendance_date date,
in_datetime timestamp with time zone,
clock_in_date date,
clock_in time without time zone NOT NULL,
clock_out_date date,
out_datetime timestamp with time zone,
clock_out time without time zone,
created_by_id integer,
employee_id_id bigint NOT NULL,
modified_by_id integer,
shift_day_id bigint
);
ALTER TABLE public.attendance_attendanceactivity OWNER TO erp_user;
--
-- Name: attendance_attendanceactivity_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.attendance_attendanceactivity ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.attendance_attendanceactivity_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: attendance_attendancegeneralsetting; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.attendance_attendancegeneralsetting (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
time_runner boolean NOT NULL,
enable_check_in boolean NOT NULL,
company_id_id bigint,
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.attendance_attendancegeneralsetting OWNER TO erp_user;
--
-- Name: attendance_attendancegeneralsetting_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.attendance_attendancegeneralsetting ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.attendance_attendancegeneralsetting_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: attendance_attendancelatecomeearlyout; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.attendance_attendancelatecomeearlyout (
id bigint NOT NULL,
is_active boolean NOT NULL,
type character varying(20) NOT NULL,
created_at timestamp with time zone,
attendance_id_id bigint NOT NULL,
created_by_id integer,
employee_id_id bigint,
modified_by_id integer
);
ALTER TABLE public.attendance_attendancelatecomeearlyout OWNER TO erp_user;
--
-- Name: attendance_attendancelatecomeearlyout_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.attendance_attendancelatecomeearlyout ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.attendance_attendancelatecomeearlyout_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: attendance_attendanceovertime; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.attendance_attendanceovertime (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
month character varying(10) NOT NULL,
month_sequence smallint NOT NULL,
year character varying(10),
worked_hours character varying(10),
pending_hours character varying(10),
overtime character varying(20) NOT NULL,
hour_account_second integer,
hour_pending_second integer,
overtime_second integer,
created_by_id integer,
employee_id_id bigint NOT NULL,
modified_by_id integer,
CONSTRAINT attendance_attendanceovertime_month_sequence_check CHECK ((month_sequence >= 0))
);
ALTER TABLE public.attendance_attendanceovertime OWNER TO erp_user;
--
-- Name: attendance_attendanceovertime_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.attendance_attendanceovertime ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.attendance_attendanceovertime_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: attendance_attendancerequestcomment; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.attendance_attendancerequestcomment (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
comment text,
created_by_id integer,
employee_id_id bigint NOT NULL,
modified_by_id integer,
request_id_id bigint NOT NULL
);
ALTER TABLE public.attendance_attendancerequestcomment OWNER TO erp_user;
--
-- Name: attendance_attendancerequestcomment_files; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.attendance_attendancerequestcomment_files (
id bigint NOT NULL,
attendancerequestcomment_id bigint NOT NULL,
attendancerequestfile_id bigint NOT NULL
);
ALTER TABLE public.attendance_attendancerequestcomment_files OWNER TO erp_user;
--
-- Name: attendance_attendancerequestcomment_files_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.attendance_attendancerequestcomment_files ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.attendance_attendancerequestcomment_files_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: attendance_attendancerequestcomment_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.attendance_attendancerequestcomment ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.attendance_attendancerequestcomment_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: attendance_attendancerequestfile; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.attendance_attendancerequestfile (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
file character varying(100) NOT NULL,
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.attendance_attendancerequestfile OWNER TO erp_user;
--
-- Name: attendance_attendancerequestfile_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.attendance_attendancerequestfile ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.attendance_attendancerequestfile_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: attendance_attendancevalidationcondition; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.attendance_attendancevalidationcondition (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
validation_at_work character varying(10) NOT NULL,
minimum_overtime_to_approve character varying(10),
overtime_cutoff character varying(10),
auto_approve_ot boolean NOT NULL,
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.attendance_attendancevalidationcondition OWNER TO erp_user;
--
-- Name: attendance_attendancevalidationcondition_company_id; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.attendance_attendancevalidationcondition_company_id (
id bigint NOT NULL,
attendancevalidationcondition_id bigint NOT NULL,
company_id bigint NOT NULL
);
ALTER TABLE public.attendance_attendancevalidationcondition_company_id OWNER TO erp_user;
--
-- Name: attendance_attendancevalidationcondition_company_id_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.attendance_attendancevalidationcondition_company_id ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.attendance_attendancevalidationcondition_company_id_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: attendance_attendancevalidationcondition_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.attendance_attendancevalidationcondition ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.attendance_attendancevalidationcondition_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: attendance_batchattendance; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.attendance_batchattendance (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
title character varying(150) NOT NULL,
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.attendance_batchattendance OWNER TO erp_user;
--
-- Name: attendance_batchattendance_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.attendance_batchattendance ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.attendance_batchattendance_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: attendance_gracetime; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.attendance_gracetime (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
allowed_time character varying(10) NOT NULL,
allowed_time_in_secs integer NOT NULL,
allowed_clock_in boolean NOT NULL,
allowed_clock_out boolean NOT NULL,
is_default boolean NOT NULL,
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.attendance_gracetime OWNER TO erp_user;
--
-- Name: attendance_gracetime_company_id; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.attendance_gracetime_company_id (
id bigint NOT NULL,
gracetime_id bigint NOT NULL,
company_id bigint NOT NULL
);
ALTER TABLE public.attendance_gracetime_company_id OWNER TO erp_user;
--
-- Name: attendance_gracetime_company_id_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.attendance_gracetime_company_id ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.attendance_gracetime_company_id_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: attendance_gracetime_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.attendance_gracetime ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.attendance_gracetime_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: attendance_historicalattendance; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.attendance_historicalattendance (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
history_title character varying(20),
history_description text,
history_highlight boolean,
attendance_date date NOT NULL,
attendance_clock_in_date date,
attendance_clock_in time without time zone,
attendance_clock_out_date date,
attendance_clock_out time without time zone,
attendance_worked_hour character varying(10),
minimum_hour character varying(10) NOT NULL,
attendance_overtime character varying(10) NOT NULL,
attendance_overtime_approve boolean NOT NULL,
attendance_validated boolean NOT NULL,
at_work_second integer,
overtime_second integer,
approved_overtime_second integer NOT NULL,
is_validate_request boolean NOT NULL,
is_bulk_request boolean NOT NULL,
is_validate_request_approved boolean NOT NULL,
request_description text,
request_type character varying(18),
is_holiday boolean NOT NULL,
requested_data jsonb,
history_id integer NOT NULL,
history_date timestamp with time zone NOT NULL,
history_change_reason character varying(100),
history_type character varying(1) NOT NULL,
attendance_day_id bigint,
batch_attendance_id_id bigint,
created_by_id integer,
employee_id_id bigint,
history_relation_id bigint NOT NULL,
history_user_id integer,
modified_by_id integer,
shift_id_id bigint,
work_type_id_id bigint
);
ALTER TABLE public.attendance_historicalattendance OWNER TO erp_user;
--
-- Name: attendance_historicalattendance_history_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.attendance_historicalattendance ALTER COLUMN history_id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.attendance_historicalattendance_history_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: attendance_historicalattendance_history_tags; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.attendance_historicalattendance_history_tags (
id bigint NOT NULL,
historicalattendance_id integer NOT NULL,
audittag_id bigint NOT NULL
);
ALTER TABLE public.attendance_historicalattendance_history_tags OWNER TO erp_user;
--
-- Name: attendance_historicalattendance_history_tags_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.attendance_historicalattendance_history_tags ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.attendance_historicalattendance_history_tags_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: attendance_overrideattendances; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.attendance_overrideattendances (
attendance_ptr_id bigint NOT NULL
);
ALTER TABLE public.attendance_overrideattendances OWNER TO erp_user;
--
-- Name: attendance_penaltyaccount; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.attendance_penaltyaccount (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
minus_leaves double precision,
deduct_from_carry_forward boolean NOT NULL,
penalty_amount double precision,
created_by_id integer,
employee_id_id bigint,
late_early_id_id bigint,
leave_request_id_id bigint,
leave_type_id_id bigint,
modified_by_id integer
);
ALTER TABLE public.attendance_penaltyaccount OWNER TO erp_user;
--
-- Name: attendance_penaltyaccount_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.attendance_penaltyaccount ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.attendance_penaltyaccount_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: attendance_workrecords; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.attendance_workrecords (
id bigint NOT NULL,
record_name character varying(250),
work_record_type character varying(5),
date date,
at_work character varying(5),
min_hour character varying(5),
at_work_second integer,
min_hour_second integer,
note text NOT NULL,
message character varying(30),
is_attendance_record boolean NOT NULL,
is_leave_record boolean NOT NULL,
day_percentage double precision NOT NULL,
last_update timestamp with time zone,
employee_id_id bigint NOT NULL
);
ALTER TABLE public.attendance_workrecords OWNER TO erp_user;
--
-- Name: attendance_workrecords_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.attendance_workrecords ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.attendance_workrecords_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: auditlog_logentry; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.auditlog_logentry (
id integer NOT NULL,
object_pk character varying(255) NOT NULL,
object_id bigint,
object_repr text NOT NULL,
action smallint NOT NULL,
changes jsonb,
"timestamp" timestamp with time zone NOT NULL,
actor_id integer,
content_type_id integer NOT NULL,
remote_addr inet,
additional_data jsonb,
serialized_data jsonb,
cid character varying(255),
changes_text text NOT NULL,
CONSTRAINT auditlog_logentry_action_check CHECK ((action >= 0))
);
ALTER TABLE public.auditlog_logentry OWNER TO erp_user;
--
-- Name: auditlog_logentry_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.auditlog_logentry ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.auditlog_logentry_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: auth_group; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.auth_group (
id integer NOT NULL,
name character varying(150) NOT NULL
);
ALTER TABLE public.auth_group OWNER TO erp_user;
--
-- Name: auth_group_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.auth_group ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.auth_group_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: auth_group_permissions; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.auth_group_permissions (
id bigint NOT NULL,
group_id integer NOT NULL,
permission_id integer NOT NULL
);
ALTER TABLE public.auth_group_permissions OWNER TO erp_user;
--
-- Name: auth_group_permissions_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.auth_group_permissions ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.auth_group_permissions_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: auth_permission; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.auth_permission (
id integer NOT NULL,
name character varying(255) NOT NULL,
content_type_id integer NOT NULL,
codename character varying(100) NOT NULL
);
ALTER TABLE public.auth_permission OWNER TO erp_user;
--
-- Name: auth_permission_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.auth_permission ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.auth_permission_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: auth_user; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.auth_user (
id integer NOT NULL,
password character varying(128) NOT NULL,
last_login timestamp with time zone,
is_superuser boolean NOT NULL,
username character varying(150) NOT NULL,
first_name character varying(150) NOT NULL,
last_name character varying(150) NOT NULL,
email character varying(254) NOT NULL,
is_staff boolean NOT NULL,
is_active boolean NOT NULL,
date_joined timestamp with time zone NOT NULL,
is_new_employee boolean NOT NULL
);
ALTER TABLE public.auth_user OWNER TO erp_user;
--
-- Name: auth_user_groups; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.auth_user_groups (
id bigint NOT NULL,
user_id integer NOT NULL,
group_id integer NOT NULL
);
ALTER TABLE public.auth_user_groups OWNER TO erp_user;
--
-- Name: auth_user_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.auth_user_groups ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.auth_user_groups_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: auth_user_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.auth_user ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.auth_user_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: auth_user_user_permissions; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.auth_user_user_permissions (
id bigint NOT NULL,
user_id integer NOT NULL,
permission_id integer NOT NULL
);
ALTER TABLE public.auth_user_user_permissions OWNER TO erp_user;
--
-- Name: auth_user_user_permissions_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.auth_user_user_permissions ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.auth_user_user_permissions_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: base_announcement; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.base_announcement (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
title character varying(100) NOT NULL,
description text,
expire_date date,
disable_comments boolean NOT NULL,
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.base_announcement OWNER TO erp_user;
--
-- Name: base_announcement_attachments; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.base_announcement_attachments (
id bigint NOT NULL,
announcement_id bigint NOT NULL,
attachment_id bigint NOT NULL
);
ALTER TABLE public.base_announcement_attachments OWNER TO erp_user;
--
-- Name: base_announcement_attachments_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.base_announcement_attachments ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.base_announcement_attachments_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: base_announcement_company_id; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.base_announcement_company_id (
id bigint NOT NULL,
announcement_id bigint NOT NULL,
company_id bigint NOT NULL
);
ALTER TABLE public.base_announcement_company_id OWNER TO erp_user;
--
-- Name: base_announcement_company_id_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.base_announcement_company_id ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.base_announcement_company_id_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: base_announcement_department; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.base_announcement_department (
id bigint NOT NULL,
announcement_id bigint NOT NULL,
department_id bigint NOT NULL
);
ALTER TABLE public.base_announcement_department OWNER TO erp_user;
--
-- Name: base_announcement_department_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.base_announcement_department ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.base_announcement_department_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: base_announcement_employees; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.base_announcement_employees (
id bigint NOT NULL,
announcement_id bigint NOT NULL,
employee_id bigint NOT NULL
);
ALTER TABLE public.base_announcement_employees OWNER TO erp_user;
--
-- Name: base_announcement_employees_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.base_announcement_employees ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.base_announcement_employees_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: base_announcement_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.base_announcement ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.base_announcement_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: base_announcement_job_position; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.base_announcement_job_position (
id bigint NOT NULL,
announcement_id bigint NOT NULL,
jobposition_id bigint NOT NULL
);
ALTER TABLE public.base_announcement_job_position OWNER TO erp_user;
--
-- Name: base_announcement_job_position_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.base_announcement_job_position ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.base_announcement_job_position_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: base_announcementcomment; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.base_announcementcomment (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
comment text,
announcement_id_id bigint NOT NULL,
created_by_id integer,
employee_id_id bigint NOT NULL,
modified_by_id integer
);
ALTER TABLE public.base_announcementcomment OWNER TO erp_user;
--
-- Name: base_announcementcomment_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.base_announcementcomment ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.base_announcementcomment_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: base_announcementexpire; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.base_announcementexpire (
id bigint NOT NULL,
days integer
);
ALTER TABLE public.base_announcementexpire OWNER TO erp_user;
--
-- Name: base_announcementexpire_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.base_announcementexpire ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.base_announcementexpire_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: base_announcementview; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.base_announcementview (
id bigint NOT NULL,
viewed boolean NOT NULL,
created_at timestamp with time zone,
announcement_id bigint NOT NULL,
user_id integer NOT NULL
);
ALTER TABLE public.base_announcementview OWNER TO erp_user;
--
-- Name: base_announcementview_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.base_announcementview ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.base_announcementview_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: base_attachment; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.base_attachment (
id bigint NOT NULL,
file character varying(100) NOT NULL
);
ALTER TABLE public.base_attachment OWNER TO erp_user;
--
-- Name: base_attachment_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.base_attachment ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.base_attachment_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: base_attendanceallowedip; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.base_attendanceallowedip (
id bigint NOT NULL,
is_enabled boolean NOT NULL,
additional_data jsonb
);
ALTER TABLE public.base_attendanceallowedip OWNER TO erp_user;
--
-- Name: base_attendanceallowedip_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.base_attendanceallowedip ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.base_attendanceallowedip_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: base_baserequestfile; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.base_baserequestfile (
id bigint NOT NULL,
file character varying(100) NOT NULL
);
ALTER TABLE public.base_baserequestfile OWNER TO erp_user;
--
-- Name: base_baserequestfile_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.base_baserequestfile ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.base_baserequestfile_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: base_biometricattendance; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.base_biometricattendance (
id bigint NOT NULL,
is_installed boolean NOT NULL,
company_id_id bigint
);
ALTER TABLE public.base_biometricattendance OWNER TO erp_user;
--
-- Name: base_biometricattendance_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.base_biometricattendance ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.base_biometricattendance_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: base_company; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.base_company (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
company character varying(50) NOT NULL,
hq boolean NOT NULL,
address text NOT NULL,
country character varying(50) NOT NULL,
state character varying(50) NOT NULL,
city character varying(50) NOT NULL,
zip character varying(20) NOT NULL,
icon character varying(100),
date_format character varying(30),
time_format character varying(20),
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.base_company OWNER TO erp_user;
--
-- Name: base_company_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.base_company ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.base_company_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: base_companyleaves; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.base_companyleaves (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
based_on_week character varying(100),
based_on_week_day character varying(100) NOT NULL,
company_id_id bigint,
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.base_companyleaves OWNER TO erp_user;
--
-- Name: base_companyleaves_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.base_companyleaves ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.base_companyleaves_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: base_dashboardemployeecharts; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.base_dashboardemployeecharts (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
charts jsonb,
created_by_id integer,
employee_id bigint NOT NULL,
modified_by_id integer
);
ALTER TABLE public.base_dashboardemployeecharts OWNER TO erp_user;
--
-- Name: base_dashboardemployeecharts_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.base_dashboardemployeecharts ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.base_dashboardemployeecharts_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: base_department; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.base_department (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
department character varying(50) NOT NULL,
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.base_department OWNER TO erp_user;
--
-- Name: base_department_company_id; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.base_department_company_id (
id bigint NOT NULL,
department_id bigint NOT NULL,
company_id bigint NOT NULL
);
ALTER TABLE public.base_department_company_id OWNER TO erp_user;
--
-- Name: base_department_company_id_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.base_department_company_id ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.base_department_company_id_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: base_department_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.base_department ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.base_department_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: base_driverviewed; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.base_driverviewed (
id bigint NOT NULL,
viewed character varying(10) NOT NULL,
user_id integer NOT NULL
);
ALTER TABLE public.base_driverviewed OWNER TO erp_user;
--
-- Name: base_driverviewed_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.base_driverviewed ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.base_driverviewed_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: base_dynamicemailconfiguration; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.base_dynamicemailconfiguration (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
host character varying(256),
port smallint,
from_email character varying(256),
username character varying(256),
display_name character varying(256),
password character varying(256),
use_tls boolean NOT NULL,
use_ssl boolean NOT NULL,
fail_silently boolean NOT NULL,
is_primary boolean NOT NULL,
timeout smallint,
company_id_id bigint,
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.base_dynamicemailconfiguration OWNER TO erp_user;
--
-- Name: base_dynamicemailconfiguration_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.base_dynamicemailconfiguration ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.base_dynamicemailconfiguration_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: base_dynamicpagination; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.base_dynamicpagination (
id bigint NOT NULL,
pagination integer NOT NULL,
user_id_id integer
);
ALTER TABLE public.base_dynamicpagination OWNER TO erp_user;
--
-- Name: base_dynamicpagination_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.base_dynamicpagination ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.base_dynamicpagination_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: base_emaillog; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.base_emaillog (
id bigint NOT NULL,
subject character varying(255) NOT NULL,
body text NOT NULL,
from_email character varying(254) NOT NULL,
"to" character varying(254) NOT NULL,
status character varying(6) NOT NULL,
created_at timestamp with time zone NOT NULL,
company_id_id bigint
);
ALTER TABLE public.base_emaillog OWNER TO erp_user;
--
-- Name: base_emaillog_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.base_emaillog ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.base_emaillog_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: base_employeeshift; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.base_employeeshift (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
employee_shift character varying(50) NOT NULL,
weekly_full_time character varying(6),
full_time character varying(6) NOT NULL,
created_by_id integer,
grace_time_id_id bigint,
modified_by_id integer
);
ALTER TABLE public.base_employeeshift OWNER TO erp_user;
--
-- Name: base_employeeshift_company_id; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.base_employeeshift_company_id (
id bigint NOT NULL,
employeeshift_id bigint NOT NULL,
company_id bigint NOT NULL
);
ALTER TABLE public.base_employeeshift_company_id OWNER TO erp_user;
--
-- Name: base_employeeshift_company_id_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.base_employeeshift_company_id ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.base_employeeshift_company_id_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: base_employeeshift_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.base_employeeshift ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.base_employeeshift_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: base_employeeshiftday; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.base_employeeshiftday (
id bigint NOT NULL,
day character varying(20) NOT NULL
);
ALTER TABLE public.base_employeeshiftday OWNER TO erp_user;
--
-- Name: base_employeeshiftday_company_id; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.base_employeeshiftday_company_id (
id bigint NOT NULL,
employeeshiftday_id bigint NOT NULL,
company_id bigint NOT NULL
);
ALTER TABLE public.base_employeeshiftday_company_id OWNER TO erp_user;
--
-- Name: base_employeeshiftday_company_id_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.base_employeeshiftday_company_id ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.base_employeeshiftday_company_id_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: base_employeeshiftday_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.base_employeeshiftday ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.base_employeeshiftday_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: base_employeeshiftschedule; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.base_employeeshiftschedule (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
minimum_working_hour character varying(5) NOT NULL,
start_time time without time zone,
end_time time without time zone,
is_night_shift boolean NOT NULL,
is_auto_punch_out_enabled boolean NOT NULL,
auto_punch_out_time time without time zone,
created_by_id integer,
day_id bigint NOT NULL,
modified_by_id integer,
shift_id_id bigint NOT NULL
);
ALTER TABLE public.base_employeeshiftschedule OWNER TO erp_user;
--
-- Name: base_employeeshiftschedule_company_id; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.base_employeeshiftschedule_company_id (
id bigint NOT NULL,
employeeshiftschedule_id bigint NOT NULL,
company_id bigint NOT NULL
);
ALTER TABLE public.base_employeeshiftschedule_company_id OWNER TO erp_user;
--
-- Name: base_employeeshiftschedule_company_id_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.base_employeeshiftschedule_company_id ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.base_employeeshiftschedule_company_id_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: base_employeeshiftschedule_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.base_employeeshiftschedule ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.base_employeeshiftschedule_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: base_employeetype; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.base_employeetype (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
employee_type character varying(50) NOT NULL,
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.base_employeetype OWNER TO erp_user;
--
-- Name: base_employeetype_company_id; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.base_employeetype_company_id (
id bigint NOT NULL,
employeetype_id bigint NOT NULL,
company_id bigint NOT NULL
);
ALTER TABLE public.base_employeetype_company_id OWNER TO erp_user;
--
-- Name: base_employeetype_company_id_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.base_employeetype_company_id ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.base_employeetype_company_id_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: base_employeetype_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.base_employeetype ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.base_employeetype_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: base_historicalrotatingshiftassign; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.base_historicalrotatingshiftassign (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
history_title character varying(20),
history_description text,
history_highlight boolean,
start_date date NOT NULL,
next_change_date date,
based_on character varying(10) NOT NULL,
rotate_after_day integer,
rotate_every_weekend character varying(10),
rotate_every character varying(10),
additional_data jsonb,
history_id integer NOT NULL,
history_date timestamp with time zone NOT NULL,
history_change_reason character varying(100),
history_type character varying(1) NOT NULL,
created_by_id integer,
current_shift_id bigint,
employee_id_id bigint,
history_relation_id bigint NOT NULL,
history_user_id integer,
modified_by_id integer,
next_shift_id bigint,
rotating_shift_id_id bigint
);
ALTER TABLE public.base_historicalrotatingshiftassign OWNER TO erp_user;
--
-- Name: base_historicalrotatingshiftassign_history_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.base_historicalrotatingshiftassign ALTER COLUMN history_id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.base_historicalrotatingshiftassign_history_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: base_historicalrotatingshiftassign_history_tags; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.base_historicalrotatingshiftassign_history_tags (
id bigint NOT NULL,
historicalrotatingshiftassign_id integer NOT NULL,
audittag_id bigint NOT NULL
);
ALTER TABLE public.base_historicalrotatingshiftassign_history_tags OWNER TO erp_user;
--
-- Name: base_historicalrotatingshiftassign_history_tags_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.base_historicalrotatingshiftassign_history_tags ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.base_historicalrotatingshiftassign_history_tags_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: base_historicalrotatingworktypeassign; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.base_historicalrotatingworktypeassign (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
history_title character varying(20),
history_description text,
history_highlight boolean,
start_date date NOT NULL,
next_change_date date,
based_on character varying(10) NOT NULL,
rotate_after_day integer NOT NULL,
rotate_every_weekend character varying(10),
rotate_every character varying(10) NOT NULL,
additional_data jsonb,
history_id integer NOT NULL,
history_date timestamp with time zone NOT NULL,
history_change_reason character varying(100),
history_type character varying(1) NOT NULL,
created_by_id integer,
current_work_type_id bigint,
employee_id_id bigint,
history_relation_id bigint NOT NULL,
history_user_id integer,
modified_by_id integer,
next_work_type_id bigint,
rotating_work_type_id_id bigint
);
ALTER TABLE public.base_historicalrotatingworktypeassign OWNER TO erp_user;
--
-- Name: base_historicalrotatingworktypeassign_history_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.base_historicalrotatingworktypeassign ALTER COLUMN history_id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.base_historicalrotatingworktypeassign_history_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: base_historicalrotatingworktypeassign_history_tags; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.base_historicalrotatingworktypeassign_history_tags (
id bigint NOT NULL,
historicalrotatingworktypeassign_id integer NOT NULL,
audittag_id bigint NOT NULL
);
ALTER TABLE public.base_historicalrotatingworktypeassign_history_tags OWNER TO erp_user;
--
-- Name: base_historicalrotatingworktypeassign_history_tags_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.base_historicalrotatingworktypeassign_history_tags ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.base_historicalrotatingworktypeassign_history_tags_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: base_historicalshiftrequest; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.base_historicalshiftrequest (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
history_title character varying(20),
history_description text,
history_highlight boolean,
requested_date date,
reallocate_approved boolean NOT NULL,
reallocate_canceled boolean NOT NULL,
requested_till date,
description text,
is_permanent_shift boolean NOT NULL,
approved boolean NOT NULL,
canceled boolean NOT NULL,
shift_changed boolean NOT NULL,
history_id integer NOT NULL,
history_date timestamp with time zone NOT NULL,
history_change_reason character varying(100),
history_type character varying(1) NOT NULL,
created_by_id integer,
employee_id_id bigint,
history_relation_id bigint NOT NULL,
history_user_id integer,
modified_by_id integer,
previous_shift_id_id bigint,
reallocate_to_id bigint,
shift_id_id bigint
);
ALTER TABLE public.base_historicalshiftrequest OWNER TO erp_user;
--
-- Name: base_historicalshiftrequest_history_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.base_historicalshiftrequest ALTER COLUMN history_id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.base_historicalshiftrequest_history_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: base_historicalshiftrequest_history_tags; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.base_historicalshiftrequest_history_tags (
id bigint NOT NULL,
historicalshiftrequest_id integer NOT NULL,
audittag_id bigint NOT NULL
);
ALTER TABLE public.base_historicalshiftrequest_history_tags OWNER TO erp_user;
--
-- Name: base_historicalshiftrequest_history_tags_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.base_historicalshiftrequest_history_tags ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.base_historicalshiftrequest_history_tags_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: base_historicalworktyperequest; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.base_historicalworktyperequest (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
history_title character varying(20),
history_description text,
history_highlight boolean,
requested_date date,
requested_till date,
description text,
is_permanent_work_type boolean NOT NULL,
approved boolean NOT NULL,
canceled boolean NOT NULL,
work_type_changed boolean NOT NULL,
history_id integer NOT NULL,
history_date timestamp with time zone NOT NULL,
history_change_reason character varying(100),
history_type character varying(1) NOT NULL,
created_by_id integer,
employee_id_id bigint,
history_relation_id bigint NOT NULL,
history_user_id integer,
modified_by_id integer,
previous_work_type_id_id bigint,
work_type_id_id bigint
);
ALTER TABLE public.base_historicalworktyperequest OWNER TO erp_user;
--
-- Name: base_historicalworktyperequest_history_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.base_historicalworktyperequest ALTER COLUMN history_id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.base_historicalworktyperequest_history_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: base_historicalworktyperequest_history_tags; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.base_historicalworktyperequest_history_tags (
id bigint NOT NULL,
historicalworktyperequest_id integer NOT NULL,
audittag_id bigint NOT NULL
);
ALTER TABLE public.base_historicalworktyperequest_history_tags OWNER TO erp_user;
--
-- Name: base_historicalworktyperequest_history_tags_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.base_historicalworktyperequest_history_tags ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.base_historicalworktyperequest_history_tags_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: base_holidays; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.base_holidays (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
name character varying(30) NOT NULL,
start_date date NOT NULL,
end_date date,
recurring boolean NOT NULL,
company_id_id bigint,
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.base_holidays OWNER TO erp_user;
--
-- Name: base_holidays_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.base_holidays ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.base_holidays_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: base_horillamailtemplate; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.base_horillamailtemplate (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
title character varying(25) NOT NULL,
body text NOT NULL,
company_id_id bigint,
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.base_horillamailtemplate OWNER TO erp_user;
--
-- Name: base_horillamailtemplate_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.base_horillamailtemplate ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.base_horillamailtemplate_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: base_jobposition; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.base_jobposition (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
job_position character varying(50) NOT NULL,
created_by_id integer,
department_id_id bigint NOT NULL,
modified_by_id integer
);
ALTER TABLE public.base_jobposition OWNER TO erp_user;
--
-- Name: base_jobposition_company_id; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.base_jobposition_company_id (
id bigint NOT NULL,
jobposition_id bigint NOT NULL,
company_id bigint NOT NULL
);
ALTER TABLE public.base_jobposition_company_id OWNER TO erp_user;
--
-- Name: base_jobposition_company_id_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.base_jobposition_company_id ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.base_jobposition_company_id_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: base_jobposition_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.base_jobposition ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.base_jobposition_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: base_jobrole; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.base_jobrole (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
job_role character varying(50),
created_by_id integer,
job_position_id_id bigint NOT NULL,
modified_by_id integer
);
ALTER TABLE public.base_jobrole OWNER TO erp_user;
--
-- Name: base_jobrole_company_id; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.base_jobrole_company_id (
id bigint NOT NULL,
jobrole_id bigint NOT NULL,
company_id bigint NOT NULL
);
ALTER TABLE public.base_jobrole_company_id OWNER TO erp_user;
--
-- Name: base_jobrole_company_id_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.base_jobrole_company_id ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.base_jobrole_company_id_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: base_jobrole_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.base_jobrole ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.base_jobrole_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: base_multipleapprovalcondition; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.base_multipleapprovalcondition (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
condition_field character varying(255) NOT NULL,
condition_operator character varying(255),
condition_value character varying(100),
condition_start_value character varying(100),
condition_end_value character varying(100),
company_id_id bigint,
created_by_id integer,
department_id bigint NOT NULL,
modified_by_id integer
);
ALTER TABLE public.base_multipleapprovalcondition OWNER TO erp_user;
--
-- Name: base_multipleapprovalcondition_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.base_multipleapprovalcondition ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.base_multipleapprovalcondition_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: base_multipleapprovalmanagers; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.base_multipleapprovalmanagers (
id bigint NOT NULL,
sequence integer NOT NULL,
employee_id integer,
reporting_manager character varying(100),
condition_id_id bigint NOT NULL
);
ALTER TABLE public.base_multipleapprovalmanagers OWNER TO erp_user;
--
-- Name: base_multipleapprovalmanagers_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.base_multipleapprovalmanagers ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.base_multipleapprovalmanagers_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: base_notificationsound; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.base_notificationsound (
id bigint NOT NULL,
sound_enabled boolean NOT NULL,
employee_id bigint NOT NULL
);
ALTER TABLE public.base_notificationsound OWNER TO erp_user;
--
-- Name: base_notificationsound_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.base_notificationsound ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.base_notificationsound_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: base_penaltyaccounts; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.base_penaltyaccounts (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
minus_leaves double precision,
deduct_from_carry_forward boolean NOT NULL,
penalty_amount double precision,
created_by_id integer,
employee_id_id bigint,
late_early_id_id bigint,
leave_request_id_id bigint,
leave_type_id_id bigint,
modified_by_id integer
);
ALTER TABLE public.base_penaltyaccounts OWNER TO erp_user;
--
-- Name: base_penaltyaccounts_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.base_penaltyaccounts ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.base_penaltyaccounts_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: base_rotatingshift; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.base_rotatingshift (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
name character varying(50) NOT NULL,
additional_data jsonb,
created_by_id integer,
modified_by_id integer,
shift1_id bigint NOT NULL,
shift2_id bigint NOT NULL
);
ALTER TABLE public.base_rotatingshift OWNER TO erp_user;
--
-- Name: base_rotatingshift_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.base_rotatingshift ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.base_rotatingshift_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: base_rotatingshiftassign; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.base_rotatingshiftassign (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
start_date date NOT NULL,
next_change_date date,
based_on character varying(10) NOT NULL,
rotate_after_day integer,
rotate_every_weekend character varying(10),
rotate_every character varying(10),
additional_data jsonb,
created_by_id integer,
current_shift_id bigint,
employee_id_id bigint NOT NULL,
modified_by_id integer,
next_shift_id bigint,
rotating_shift_id_id bigint NOT NULL
);
ALTER TABLE public.base_rotatingshiftassign OWNER TO erp_user;
--
-- Name: base_rotatingshiftassign_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.base_rotatingshiftassign ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.base_rotatingshiftassign_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: base_rotatingworktype; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.base_rotatingworktype (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
name character varying(50) NOT NULL,
additional_data jsonb,
created_by_id integer,
modified_by_id integer,
work_type1_id bigint NOT NULL,
work_type2_id bigint NOT NULL
);
ALTER TABLE public.base_rotatingworktype OWNER TO erp_user;
--
-- Name: base_rotatingworktype_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.base_rotatingworktype ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.base_rotatingworktype_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: base_rotatingworktypeassign; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.base_rotatingworktypeassign (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
start_date date NOT NULL,
next_change_date date,
based_on character varying(10) NOT NULL,
rotate_after_day integer NOT NULL,
rotate_every_weekend character varying(10),
rotate_every character varying(10) NOT NULL,
additional_data jsonb,
created_by_id integer,
current_work_type_id bigint,
employee_id_id bigint,
modified_by_id integer,
next_work_type_id bigint,
rotating_work_type_id_id bigint NOT NULL
);
ALTER TABLE public.base_rotatingworktypeassign OWNER TO erp_user;
--
-- Name: base_rotatingworktypeassign_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.base_rotatingworktypeassign ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.base_rotatingworktypeassign_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: base_shiftrequest; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.base_shiftrequest (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
requested_date date,
reallocate_approved boolean NOT NULL,
reallocate_canceled boolean NOT NULL,
requested_till date,
description text,
is_permanent_shift boolean NOT NULL,
approved boolean NOT NULL,
canceled boolean NOT NULL,
shift_changed boolean NOT NULL,
created_by_id integer,
employee_id_id bigint,
modified_by_id integer,
previous_shift_id_id bigint,
reallocate_to_id bigint,
shift_id_id bigint NOT NULL
);
ALTER TABLE public.base_shiftrequest OWNER TO erp_user;
--
-- Name: base_shiftrequest_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.base_shiftrequest ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.base_shiftrequest_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: base_shiftrequestcomment; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.base_shiftrequestcomment (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
comment text,
created_by_id integer,
employee_id_id bigint NOT NULL,
modified_by_id integer,
request_id_id bigint NOT NULL
);
ALTER TABLE public.base_shiftrequestcomment OWNER TO erp_user;
--
-- Name: base_shiftrequestcomment_files; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.base_shiftrequestcomment_files (
id bigint NOT NULL,
shiftrequestcomment_id bigint NOT NULL,
baserequestfile_id bigint NOT NULL
);
ALTER TABLE public.base_shiftrequestcomment_files OWNER TO erp_user;
--
-- Name: base_shiftrequestcomment_files_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.base_shiftrequestcomment_files ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.base_shiftrequestcomment_files_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: base_shiftrequestcomment_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.base_shiftrequestcomment ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.base_shiftrequestcomment_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: base_tags; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.base_tags (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
title character varying(30) NOT NULL,
color character varying(30) NOT NULL,
company_id_id bigint,
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.base_tags OWNER TO erp_user;
--
-- Name: base_tags_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.base_tags ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.base_tags_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: base_tracklatecomeearlyout; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.base_tracklatecomeearlyout (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
is_enable boolean NOT NULL,
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.base_tracklatecomeearlyout OWNER TO erp_user;
--
-- Name: base_tracklatecomeearlyout_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.base_tracklatecomeearlyout ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.base_tracklatecomeearlyout_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: base_worktype; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.base_worktype (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
work_type character varying(50) NOT NULL,
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.base_worktype OWNER TO erp_user;
--
-- Name: base_worktype_company_id; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.base_worktype_company_id (
id bigint NOT NULL,
worktype_id bigint NOT NULL,
company_id bigint NOT NULL
);
ALTER TABLE public.base_worktype_company_id OWNER TO erp_user;
--
-- Name: base_worktype_company_id_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.base_worktype_company_id ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.base_worktype_company_id_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: base_worktype_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.base_worktype ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.base_worktype_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: base_worktyperequest; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.base_worktyperequest (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
requested_date date,
requested_till date,
description text,
is_permanent_work_type boolean NOT NULL,
approved boolean NOT NULL,
canceled boolean NOT NULL,
work_type_changed boolean NOT NULL,
created_by_id integer,
employee_id_id bigint,
modified_by_id integer,
previous_work_type_id_id bigint,
work_type_id_id bigint NOT NULL
);
ALTER TABLE public.base_worktyperequest OWNER TO erp_user;
--
-- Name: base_worktyperequest_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.base_worktyperequest ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.base_worktyperequest_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: base_worktyperequestcomment; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.base_worktyperequestcomment (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
comment text,
created_by_id integer,
employee_id_id bigint NOT NULL,
modified_by_id integer,
request_id_id bigint NOT NULL
);
ALTER TABLE public.base_worktyperequestcomment OWNER TO erp_user;
--
-- Name: base_worktyperequestcomment_files; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.base_worktyperequestcomment_files (
id bigint NOT NULL,
worktyperequestcomment_id bigint NOT NULL,
baserequestfile_id bigint NOT NULL
);
ALTER TABLE public.base_worktyperequestcomment_files OWNER TO erp_user;
--
-- Name: base_worktyperequestcomment_files_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.base_worktyperequestcomment_files ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.base_worktyperequestcomment_files_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: base_worktyperequestcomment_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.base_worktyperequestcomment ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.base_worktyperequestcomment_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: biometric_biometricdevices; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.biometric_biometricdevices (
created_at timestamp with time zone,
is_active boolean NOT NULL,
id uuid NOT NULL,
name character varying(100) NOT NULL,
machine_type character varying(18),
machine_ip character varying(15),
port integer,
zk_password character varying(100),
cosec_username character varying(100),
cosec_password character varying(100),
anviz_request_id character varying(200),
api_url character varying(200),
api_key character varying(100),
api_secret character varying(100),
api_token character varying(500),
api_expires character varying(100),
is_live boolean NOT NULL,
is_scheduler boolean NOT NULL,
scheduler_duration character varying(10),
last_fetch_date date,
last_fetch_time time without time zone,
company_id_id bigint,
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.biometric_biometricdevices OWNER TO erp_user;
--
-- Name: biometric_biometricemployees; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.biometric_biometricemployees (
id uuid NOT NULL,
uid integer,
ref_user_id integer,
user_id character varying(100) NOT NULL,
device_id_id uuid,
employee_id_id bigint NOT NULL
);
ALTER TABLE public.biometric_biometricemployees OWNER TO erp_user;
--
-- Name: biometric_cosecattendancearguments; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.biometric_cosecattendancearguments (
id uuid NOT NULL,
last_fetch_roll_ovr_count character varying(100),
last_fetch_seq_number character varying(100),
device_id_id uuid
);
ALTER TABLE public.biometric_cosecattendancearguments OWNER TO erp_user;
--
-- Name: django_admin_log; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.django_admin_log (
id integer NOT NULL,
action_time timestamp with time zone NOT NULL,
object_id text,
object_repr character varying(200) NOT NULL,
action_flag smallint NOT NULL,
change_message text NOT NULL,
content_type_id integer,
user_id integer NOT NULL,
CONSTRAINT django_admin_log_action_flag_check CHECK ((action_flag >= 0))
);
ALTER TABLE public.django_admin_log OWNER TO erp_user;
--
-- Name: django_admin_log_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.django_admin_log ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.django_admin_log_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: django_apscheduler_djangojob; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.django_apscheduler_djangojob (
id character varying(255) NOT NULL,
next_run_time timestamp with time zone,
job_state bytea NOT NULL
);
ALTER TABLE public.django_apscheduler_djangojob OWNER TO erp_user;
--
-- Name: django_apscheduler_djangojobexecution; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.django_apscheduler_djangojobexecution (
id bigint NOT NULL,
status character varying(50) NOT NULL,
run_time timestamp with time zone NOT NULL,
duration numeric(15,2),
finished numeric(15,2),
exception character varying(1000),
traceback text,
job_id character varying(255) NOT NULL
);
ALTER TABLE public.django_apscheduler_djangojobexecution OWNER TO erp_user;
--
-- Name: django_apscheduler_djangojobexecution_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.django_apscheduler_djangojobexecution ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.django_apscheduler_djangojobexecution_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: django_content_type; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.django_content_type (
id integer NOT NULL,
app_label character varying(100) NOT NULL,
model character varying(100) NOT NULL
);
ALTER TABLE public.django_content_type OWNER TO erp_user;
--
-- Name: django_content_type_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.django_content_type ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.django_content_type_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: django_migrations; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.django_migrations (
id bigint NOT NULL,
app character varying(255) NOT NULL,
name character varying(255) NOT NULL,
applied timestamp with time zone NOT NULL
);
ALTER TABLE public.django_migrations OWNER TO erp_user;
--
-- Name: django_migrations_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.django_migrations ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.django_migrations_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: django_session; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.django_session (
session_key character varying(40) NOT NULL,
session_data text NOT NULL,
expire_date timestamp with time zone NOT NULL
);
ALTER TABLE public.django_session OWNER TO erp_user;
--
-- Name: employee_actiontype; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.employee_actiontype (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
title character varying(50) NOT NULL,
action_type character varying(30) NOT NULL,
block_option boolean NOT NULL,
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.employee_actiontype OWNER TO erp_user;
--
-- Name: employee_actiontype_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.employee_actiontype ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.employee_actiontype_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: employee_bonuspoint; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.employee_bonuspoint (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
points integer NOT NULL,
encashment_condition character varying(100),
redeeming_points integer,
reason text,
created_by_id integer,
employee_id_id bigint,
modified_by_id integer
);
ALTER TABLE public.employee_bonuspoint OWNER TO erp_user;
--
-- Name: employee_bonuspoint_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.employee_bonuspoint ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.employee_bonuspoint_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: employee_disciplinaryaction; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.employee_disciplinaryaction (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
description text NOT NULL,
unit_in character varying(10) NOT NULL,
days integer,
hours character varying(6),
start_date date,
attachment character varying(100),
action_id bigint NOT NULL,
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.employee_disciplinaryaction OWNER TO erp_user;
--
-- Name: employee_disciplinaryaction_employee_id; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.employee_disciplinaryaction_employee_id (
id bigint NOT NULL,
disciplinaryaction_id bigint NOT NULL,
employee_id bigint NOT NULL
);
ALTER TABLE public.employee_disciplinaryaction_employee_id OWNER TO erp_user;
--
-- Name: employee_disciplinaryaction_employee_id_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.employee_disciplinaryaction_employee_id ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.employee_disciplinaryaction_employee_id_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: employee_disciplinaryaction_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.employee_disciplinaryaction ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.employee_disciplinaryaction_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: employee_employee; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.employee_employee (
id bigint NOT NULL,
badge_id character varying(50),
employee_first_name character varying(200) NOT NULL,
employee_last_name character varying(200),
employee_profile character varying(100),
email character varying(254) NOT NULL,
phone character varying(15) NOT NULL,
address text,
country character varying(30),
state character varying(30),
city character varying(30),
zip character varying(20),
dob date,
gender character varying(10),
qualification character varying(50),
experience integer,
marital_status character varying(50),
children integer,
emergency_contact character varying(15),
emergency_contact_name character varying(20),
emergency_contact_relation character varying(20),
is_active boolean NOT NULL,
additional_info jsonb,
is_from_onboarding boolean,
is_directly_converted boolean,
employee_user_id_id integer
);
ALTER TABLE public.employee_employee OWNER TO erp_user;
--
-- Name: employee_employee_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.employee_employee ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.employee_employee_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: employee_employeebankdetails; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.employee_employeebankdetails (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
bank_name character varying(50) NOT NULL,
account_number character varying(50) NOT NULL,
branch character varying(50) NOT NULL,
address text NOT NULL,
country character varying(50),
state character varying(50) NOT NULL,
city character varying(50) NOT NULL,
any_other_code1 character varying(50) NOT NULL,
any_other_code2 character varying(50),
additional_info jsonb,
created_by_id integer,
employee_id_id bigint,
modified_by_id integer
);
ALTER TABLE public.employee_employeebankdetails OWNER TO erp_user;
--
-- Name: employee_employeebankdetails_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.employee_employeebankdetails ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.employee_employeebankdetails_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: employee_employeegeneralsetting; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.employee_employeegeneralsetting (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
badge_id_prefix character varying(5) NOT NULL,
company_id_id bigint,
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.employee_employeegeneralsetting OWNER TO erp_user;
--
-- Name: employee_employeegeneralsetting_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.employee_employeegeneralsetting ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.employee_employeegeneralsetting_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: employee_employeenote; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.employee_employeenote (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
description text,
created_by_id integer,
employee_id_id bigint NOT NULL,
modified_by_id integer,
updated_by_id bigint NOT NULL
);
ALTER TABLE public.employee_employeenote OWNER TO erp_user;
--
-- Name: employee_employeenote_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.employee_employeenote ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.employee_employeenote_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: employee_employeenote_note_files; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.employee_employeenote_note_files (
id bigint NOT NULL,
employeenote_id bigint NOT NULL,
notefiles_id bigint NOT NULL
);
ALTER TABLE public.employee_employeenote_note_files OWNER TO erp_user;
--
-- Name: employee_employeenote_note_files_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.employee_employeenote_note_files ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.employee_employeenote_note_files_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: employee_employeetag; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.employee_employeetag (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
title character varying(50),
color character varying(30),
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.employee_employeetag OWNER TO erp_user;
--
-- Name: employee_employeetag_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.employee_employeetag ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.employee_employeetag_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: employee_employeeworkinformation; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.employee_employeeworkinformation (
id bigint NOT NULL,
location character varying(50),
email character varying(254),
mobile character varying(254),
date_joining date,
contract_end_date date,
basic_salary integer,
salary_hour integer,
additional_info jsonb,
experience double precision,
company_id_id bigint,
department_id_id bigint,
employee_id_id bigint,
employee_type_id_id bigint,
job_position_id_id bigint,
job_role_id_id bigint,
reporting_manager_id_id bigint,
shift_id_id bigint,
work_type_id_id bigint
);
ALTER TABLE public.employee_employeeworkinformation OWNER TO erp_user;
--
-- Name: employee_employeeworkinformation_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.employee_employeeworkinformation ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.employee_employeeworkinformation_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: employee_employeeworkinformation_tags; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.employee_employeeworkinformation_tags (
id bigint NOT NULL,
employeeworkinformation_id bigint NOT NULL,
employeetag_id bigint NOT NULL
);
ALTER TABLE public.employee_employeeworkinformation_tags OWNER TO erp_user;
--
-- Name: employee_employeeworkinformation_tags_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.employee_employeeworkinformation_tags ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.employee_employeeworkinformation_tags_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: employee_historicalbonuspoint; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.employee_historicalbonuspoint (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
history_title character varying(20),
history_description text,
history_highlight boolean,
points integer NOT NULL,
encashment_condition character varying(100),
redeeming_points integer,
reason text,
history_id integer NOT NULL,
history_date timestamp with time zone NOT NULL,
history_change_reason character varying(100),
history_type character varying(1) NOT NULL,
created_by_id integer,
employee_id_id bigint,
history_relation_id bigint NOT NULL,
history_user_id integer,
modified_by_id integer
);
ALTER TABLE public.employee_historicalbonuspoint OWNER TO erp_user;
--
-- Name: employee_historicalbonuspoint_history_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.employee_historicalbonuspoint ALTER COLUMN history_id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.employee_historicalbonuspoint_history_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: employee_historicalbonuspoint_history_tags; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.employee_historicalbonuspoint_history_tags (
id bigint NOT NULL,
historicalbonuspoint_id integer NOT NULL,
audittag_id bigint NOT NULL
);
ALTER TABLE public.employee_historicalbonuspoint_history_tags OWNER TO erp_user;
--
-- Name: employee_historicalbonuspoint_history_tags_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.employee_historicalbonuspoint_history_tags ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.employee_historicalbonuspoint_history_tags_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: employee_historicalemployeeworkinformation; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.employee_historicalemployeeworkinformation (
id bigint NOT NULL,
history_title character varying(20),
history_description text,
history_highlight boolean,
location character varying(50),
email character varying(254),
mobile character varying(254),
date_joining date,
contract_end_date date,
basic_salary integer,
salary_hour integer,
additional_info jsonb,
experience double precision,
history_id integer NOT NULL,
history_date timestamp with time zone NOT NULL,
history_change_reason character varying(100),
history_type character varying(1) NOT NULL,
company_id_id bigint,
department_id_id bigint,
employee_id_id bigint,
employee_type_id_id bigint,
history_relation_id bigint NOT NULL,
history_user_id integer,
job_position_id_id bigint,
job_role_id_id bigint,
reporting_manager_id_id bigint,
shift_id_id bigint,
work_type_id_id bigint
);
ALTER TABLE public.employee_historicalemployeeworkinformation OWNER TO erp_user;
--
-- Name: employee_historicalemployeeworkinformation_history_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.employee_historicalemployeeworkinformation ALTER COLUMN history_id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.employee_historicalemployeeworkinformation_history_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: employee_historicalemployeeworkinformation_history_tags; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.employee_historicalemployeeworkinformation_history_tags (
id bigint NOT NULL,
historicalemployeeworkinformation_id integer NOT NULL,
audittag_id bigint NOT NULL
);
ALTER TABLE public.employee_historicalemployeeworkinformation_history_tags OWNER TO erp_user;
--
-- Name: employee_historicalemployeeworkinformation_history_tags_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.employee_historicalemployeeworkinformation_history_tags ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.employee_historicalemployeeworkinformation_history_tags_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: employee_notefiles; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.employee_notefiles (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
files character varying(100),
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.employee_notefiles OWNER TO erp_user;
--
-- Name: employee_notefiles_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.employee_notefiles ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.employee_notefiles_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: employee_policy; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.employee_policy (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
title character varying(50) NOT NULL,
body text NOT NULL,
is_visible_to_all boolean NOT NULL,
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.employee_policy OWNER TO erp_user;
--
-- Name: employee_policy_attachments; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.employee_policy_attachments (
id bigint NOT NULL,
policy_id bigint NOT NULL,
policymultiplefile_id bigint NOT NULL
);
ALTER TABLE public.employee_policy_attachments OWNER TO erp_user;
--
-- Name: employee_policy_attachments_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.employee_policy_attachments ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.employee_policy_attachments_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: employee_policy_company_id; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.employee_policy_company_id (
id bigint NOT NULL,
policy_id bigint NOT NULL,
company_id bigint NOT NULL
);
ALTER TABLE public.employee_policy_company_id OWNER TO erp_user;
--
-- Name: employee_policy_company_id_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.employee_policy_company_id ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.employee_policy_company_id_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: employee_policy_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.employee_policy ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.employee_policy_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: employee_policy_specific_employees; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.employee_policy_specific_employees (
id bigint NOT NULL,
policy_id bigint NOT NULL,
employee_id bigint NOT NULL
);
ALTER TABLE public.employee_policy_specific_employees OWNER TO erp_user;
--
-- Name: employee_policy_specific_employees_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.employee_policy_specific_employees ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.employee_policy_specific_employees_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: employee_policymultiplefile; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.employee_policymultiplefile (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
attachment character varying(100) NOT NULL,
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.employee_policymultiplefile OWNER TO erp_user;
--
-- Name: employee_policymultiplefile_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.employee_policymultiplefile ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.employee_policymultiplefile_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: helpdesk_attachment; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.helpdesk_attachment (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
file character varying(100) NOT NULL,
description character varying(100),
format character varying(50),
comment_id bigint,
created_by_id integer,
modified_by_id integer,
ticket_id bigint
);
ALTER TABLE public.helpdesk_attachment OWNER TO erp_user;
--
-- Name: helpdesk_attachment_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.helpdesk_attachment ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.helpdesk_attachment_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: helpdesk_claimrequest; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.helpdesk_claimrequest (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
is_approved boolean NOT NULL,
is_rejected boolean NOT NULL,
created_by_id integer,
employee_id_id bigint,
modified_by_id integer,
ticket_id_id bigint
);
ALTER TABLE public.helpdesk_claimrequest OWNER TO erp_user;
--
-- Name: helpdesk_claimrequest_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.helpdesk_claimrequest ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.helpdesk_claimrequest_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: helpdesk_comment; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.helpdesk_comment (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
comment text,
date timestamp with time zone NOT NULL,
created_by_id integer,
employee_id_id bigint NOT NULL,
modified_by_id integer,
ticket_id bigint NOT NULL
);
ALTER TABLE public.helpdesk_comment OWNER TO erp_user;
--
-- Name: helpdesk_comment_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.helpdesk_comment ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.helpdesk_comment_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: helpdesk_departmentmanager; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.helpdesk_departmentmanager (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
company_id_id bigint,
created_by_id integer,
department_id bigint NOT NULL,
manager_id bigint NOT NULL,
modified_by_id integer
);
ALTER TABLE public.helpdesk_departmentmanager OWNER TO erp_user;
--
-- Name: helpdesk_departmentmanager_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.helpdesk_departmentmanager ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.helpdesk_departmentmanager_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: helpdesk_faq; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.helpdesk_faq (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
question character varying(255) NOT NULL,
answer text NOT NULL,
category_id bigint NOT NULL,
company_id_id bigint,
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.helpdesk_faq OWNER TO erp_user;
--
-- Name: helpdesk_faq_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.helpdesk_faq ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.helpdesk_faq_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: helpdesk_faq_tags; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.helpdesk_faq_tags (
id bigint NOT NULL,
faq_id bigint NOT NULL,
tags_id bigint NOT NULL
);
ALTER TABLE public.helpdesk_faq_tags OWNER TO erp_user;
--
-- Name: helpdesk_faq_tags_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.helpdesk_faq_tags ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.helpdesk_faq_tags_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: helpdesk_faqcategory; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.helpdesk_faqcategory (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
title character varying(30) NOT NULL,
description text,
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.helpdesk_faqcategory OWNER TO erp_user;
--
-- Name: helpdesk_faqcategory_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.helpdesk_faqcategory ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.helpdesk_faqcategory_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: helpdesk_historicalticket; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.helpdesk_historicalticket (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
history_title character varying(20),
history_description text,
history_highlight boolean,
title character varying(50) NOT NULL,
description text NOT NULL,
priority character varying(100) NOT NULL,
created_date date NOT NULL,
resolved_date date,
assigning_type character varying(100) NOT NULL,
raised_on character varying(100) NOT NULL,
deadline date,
status character varying(50) NOT NULL,
history_id integer NOT NULL,
history_date timestamp with time zone NOT NULL,
history_change_reason character varying(100),
history_type character varying(1) NOT NULL,
created_by_id integer,
employee_id_id bigint,
history_relation_id bigint NOT NULL,
history_user_id integer,
modified_by_id integer,
ticket_type_id bigint
);
ALTER TABLE public.helpdesk_historicalticket OWNER TO erp_user;
--
-- Name: helpdesk_historicalticket_history_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.helpdesk_historicalticket ALTER COLUMN history_id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.helpdesk_historicalticket_history_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: helpdesk_historicalticket_history_tags; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.helpdesk_historicalticket_history_tags (
id bigint NOT NULL,
historicalticket_id integer NOT NULL,
audittag_id bigint NOT NULL
);
ALTER TABLE public.helpdesk_historicalticket_history_tags OWNER TO erp_user;
--
-- Name: helpdesk_historicalticket_history_tags_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.helpdesk_historicalticket_history_tags ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.helpdesk_historicalticket_history_tags_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: helpdesk_ticket; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.helpdesk_ticket (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
title character varying(50) NOT NULL,
description text NOT NULL,
priority character varying(100) NOT NULL,
created_date date NOT NULL,
resolved_date date,
assigning_type character varying(100) NOT NULL,
raised_on character varying(100) NOT NULL,
deadline date,
status character varying(50) NOT NULL,
created_by_id integer,
employee_id_id bigint NOT NULL,
modified_by_id integer,
ticket_type_id bigint NOT NULL
);
ALTER TABLE public.helpdesk_ticket OWNER TO erp_user;
--
-- Name: helpdesk_ticket_assigned_to; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.helpdesk_ticket_assigned_to (
id bigint NOT NULL,
ticket_id bigint NOT NULL,
employee_id bigint NOT NULL
);
ALTER TABLE public.helpdesk_ticket_assigned_to OWNER TO erp_user;
--
-- Name: helpdesk_ticket_assigned_to_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.helpdesk_ticket_assigned_to ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.helpdesk_ticket_assigned_to_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: helpdesk_ticket_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.helpdesk_ticket ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.helpdesk_ticket_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: helpdesk_ticket_tags; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.helpdesk_ticket_tags (
id bigint NOT NULL,
ticket_id bigint NOT NULL,
tags_id bigint NOT NULL
);
ALTER TABLE public.helpdesk_ticket_tags OWNER TO erp_user;
--
-- Name: helpdesk_ticket_tags_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.helpdesk_ticket_tags ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.helpdesk_ticket_tags_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: helpdesk_tickettype; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.helpdesk_tickettype (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
title character varying(100) NOT NULL,
type character varying(50) NOT NULL,
prefix character varying(3) NOT NULL,
company_id_id bigint,
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.helpdesk_tickettype OWNER TO erp_user;
--
-- Name: helpdesk_tickettype_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.helpdesk_tickettype ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.helpdesk_tickettype_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: horilla_audit_accountblockunblock; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.horilla_audit_accountblockunblock (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
is_enabled boolean,
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.horilla_audit_accountblockunblock OWNER TO erp_user;
--
-- Name: horilla_audit_accountblockunblock_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.horilla_audit_accountblockunblock ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.horilla_audit_accountblockunblock_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: horilla_audit_audittag; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.horilla_audit_audittag (
id bigint NOT NULL,
title character varying(20) NOT NULL,
highlight boolean NOT NULL
);
ALTER TABLE public.horilla_audit_audittag OWNER TO erp_user;
--
-- Name: horilla_audit_audittag_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.horilla_audit_audittag ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.horilla_audit_audittag_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: horilla_audit_historytrackingfields; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.horilla_audit_historytrackingfields (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
tracking_fields jsonb,
work_info_track boolean NOT NULL,
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.horilla_audit_historytrackingfields OWNER TO erp_user;
--
-- Name: horilla_audit_historytrackingfields_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.horilla_audit_historytrackingfields ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.horilla_audit_historytrackingfields_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: horilla_automations_mailautomation; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.horilla_automations_mailautomation (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
title character varying(256) NOT NULL,
method_title character varying(50) NOT NULL,
model character varying(100) NOT NULL,
mail_to text NOT NULL,
mail_details character varying(250) NOT NULL,
mail_detail_choice text NOT NULL,
trigger character varying(10) NOT NULL,
condition_html text,
condition_querystring text,
condition text NOT NULL,
created_by_id integer,
mail_template_id bigint NOT NULL,
modified_by_id integer
);
ALTER TABLE public.horilla_automations_mailautomation OWNER TO erp_user;
--
-- Name: horilla_automations_mailautomation_also_sent_to; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.horilla_automations_mailautomation_also_sent_to (
id bigint NOT NULL,
mailautomation_id bigint NOT NULL,
employee_id bigint NOT NULL
);
ALTER TABLE public.horilla_automations_mailautomation_also_sent_to OWNER TO erp_user;
--
-- Name: horilla_automations_mailautomation_also_sent_to_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.horilla_automations_mailautomation_also_sent_to ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.horilla_automations_mailautomation_also_sent_to_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: horilla_automations_mailautomation_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.horilla_automations_mailautomation ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.horilla_automations_mailautomation_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: horilla_automations_mailautomation_template_attachments; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.horilla_automations_mailautomation_template_attachments (
id bigint NOT NULL,
mailautomation_id bigint NOT NULL,
horillamailtemplate_id bigint NOT NULL
);
ALTER TABLE public.horilla_automations_mailautomation_template_attachments OWNER TO erp_user;
--
-- Name: horilla_automations_mailautomation_template_attachments_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.horilla_automations_mailautomation_template_attachments ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.horilla_automations_mailautomation_template_attachments_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: horilla_documents_document; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.horilla_documents_document (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
title character varying(250) NOT NULL,
document character varying(100),
status character varying(10) NOT NULL,
reject_reason text,
issue_date date,
expiry_date date,
notify_before integer,
is_digital_asset boolean NOT NULL,
created_by_id integer,
document_request_id_id bigint,
employee_id_id bigint NOT NULL,
modified_by_id integer
);
ALTER TABLE public.horilla_documents_document OWNER TO erp_user;
--
-- Name: horilla_documents_document_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.horilla_documents_document ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.horilla_documents_document_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: horilla_documents_documentrequest; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.horilla_documents_documentrequest (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
title character varying(100) NOT NULL,
format character varying(10) NOT NULL,
max_size integer,
description text,
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.horilla_documents_documentrequest OWNER TO erp_user;
--
-- Name: horilla_documents_documentrequest_employee_id; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.horilla_documents_documentrequest_employee_id (
id bigint NOT NULL,
documentrequest_id bigint NOT NULL,
employee_id bigint NOT NULL
);
ALTER TABLE public.horilla_documents_documentrequest_employee_id OWNER TO erp_user;
--
-- Name: horilla_documents_documentrequest_employee_id_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.horilla_documents_documentrequest_employee_id ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.horilla_documents_documentrequest_employee_id_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: horilla_documents_documentrequest_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.horilla_documents_documentrequest ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.horilla_documents_documentrequest_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: horilla_views_activegroup; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.horilla_views_activegroup (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
path character varying(256) NOT NULL,
group_target character varying(256) NOT NULL,
group_by_field character varying(256) NOT NULL,
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.horilla_views_activegroup OWNER TO erp_user;
--
-- Name: horilla_views_activegroup_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.horilla_views_activegroup ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.horilla_views_activegroup_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: horilla_views_activetab; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.horilla_views_activetab (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
path character varying(256) NOT NULL,
tab_target character varying(256) NOT NULL,
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.horilla_views_activetab OWNER TO erp_user;
--
-- Name: horilla_views_activetab_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.horilla_views_activetab ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.horilla_views_activetab_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: horilla_views_activeview; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.horilla_views_activeview (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
path character varying(256) NOT NULL,
type character varying(50) NOT NULL,
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.horilla_views_activeview OWNER TO erp_user;
--
-- Name: horilla_views_activeview_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.horilla_views_activeview ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.horilla_views_activeview_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: horilla_views_savedfilter; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.horilla_views_savedfilter (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
title character varying(20),
color character varying(10) NOT NULL,
is_default boolean NOT NULL,
filter text NOT NULL,
urlencode text NOT NULL,
path character varying(256) NOT NULL,
referrer character varying(256) NOT NULL,
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.horilla_views_savedfilter OWNER TO erp_user;
--
-- Name: horilla_views_savedfilter_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.horilla_views_savedfilter ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.horilla_views_savedfilter_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: horilla_views_togglecolumn; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.horilla_views_togglecolumn (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
path character varying(256) NOT NULL,
excluded_columns jsonb NOT NULL,
created_by_id integer,
modified_by_id integer,
user_id_id integer NOT NULL
);
ALTER TABLE public.horilla_views_togglecolumn OWNER TO erp_user;
--
-- Name: horilla_views_togglecolumn_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.horilla_views_togglecolumn ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.horilla_views_togglecolumn_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: leave_availableleave; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.leave_availableleave (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
available_days double precision NOT NULL,
carryforward_days double precision NOT NULL,
total_leave_days double precision NOT NULL,
assigned_date date NOT NULL,
reset_date date,
expired_date date,
created_by_id integer,
employee_id_id bigint NOT NULL,
leave_type_id_id bigint,
modified_by_id integer
);
ALTER TABLE public.leave_availableleave OWNER TO erp_user;
--
-- Name: leave_availableleave_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.leave_availableleave ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.leave_availableleave_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: leave_companyleave; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.leave_companyleave (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
based_on_week character varying(100),
based_on_week_day character varying(100) NOT NULL,
company_id_id bigint,
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.leave_companyleave OWNER TO erp_user;
--
-- Name: leave_companyleave_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.leave_companyleave ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.leave_companyleave_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: leave_compensatoryleaverequest; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.leave_compensatoryleaverequest (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
requested_days double precision,
requested_date date NOT NULL,
description text NOT NULL,
status character varying(30) NOT NULL,
reject_reason text NOT NULL,
created_by_id integer,
employee_id_id bigint NOT NULL,
leave_type_id_id bigint NOT NULL,
modified_by_id integer
);
ALTER TABLE public.leave_compensatoryleaverequest OWNER TO erp_user;
--
-- Name: leave_compensatoryleaverequest_attendance_id; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.leave_compensatoryleaverequest_attendance_id (
id bigint NOT NULL,
compensatoryleaverequest_id bigint NOT NULL,
attendance_id bigint NOT NULL
);
ALTER TABLE public.leave_compensatoryleaverequest_attendance_id OWNER TO erp_user;
--
-- Name: leave_compensatoryleaverequest_attendance_id_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.leave_compensatoryleaverequest_attendance_id ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.leave_compensatoryleaverequest_attendance_id_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: leave_compensatoryleaverequest_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.leave_compensatoryleaverequest ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.leave_compensatoryleaverequest_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: leave_compensatoryleaverequestcomment; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.leave_compensatoryleaverequestcomment (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
comment text,
created_by_id integer,
employee_id_id bigint NOT NULL,
modified_by_id integer,
request_id_id bigint NOT NULL
);
ALTER TABLE public.leave_compensatoryleaverequestcomment OWNER TO erp_user;
--
-- Name: leave_compensatoryleaverequestcomment_files; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.leave_compensatoryleaverequestcomment_files (
id bigint NOT NULL,
compensatoryleaverequestcomment_id bigint NOT NULL,
leaverequestfile_id bigint NOT NULL
);
ALTER TABLE public.leave_compensatoryleaverequestcomment_files OWNER TO erp_user;
--
-- Name: leave_compensatoryleaverequestcomment_files_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.leave_compensatoryleaverequestcomment_files ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.leave_compensatoryleaverequestcomment_files_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: leave_compensatoryleaverequestcomment_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.leave_compensatoryleaverequestcomment ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.leave_compensatoryleaverequestcomment_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: leave_employeepastleaverestrict; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.leave_employeepastleaverestrict (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
enabled boolean NOT NULL,
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.leave_employeepastleaverestrict OWNER TO erp_user;
--
-- Name: leave_employeepastleaverestrict_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.leave_employeepastleaverestrict ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.leave_employeepastleaverestrict_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: leave_historicalavailableleave; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.leave_historicalavailableleave (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
history_title character varying(20),
history_description text,
history_highlight boolean,
available_days double precision NOT NULL,
carryforward_days double precision NOT NULL,
total_leave_days double precision NOT NULL,
assigned_date date NOT NULL,
reset_date date,
expired_date date,
history_id integer NOT NULL,
history_date timestamp with time zone NOT NULL,
history_change_reason character varying(100),
history_type character varying(1) NOT NULL,
created_by_id integer,
employee_id_id bigint,
history_relation_id bigint NOT NULL,
history_user_id integer,
leave_type_id_id bigint,
modified_by_id integer
);
ALTER TABLE public.leave_historicalavailableleave OWNER TO erp_user;
--
-- Name: leave_historicalavailableleave_history_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.leave_historicalavailableleave ALTER COLUMN history_id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.leave_historicalavailableleave_history_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: leave_historicalavailableleave_history_tags; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.leave_historicalavailableleave_history_tags (
id bigint NOT NULL,
historicalavailableleave_id integer NOT NULL,
audittag_id bigint NOT NULL
);
ALTER TABLE public.leave_historicalavailableleave_history_tags OWNER TO erp_user;
--
-- Name: leave_historicalavailableleave_history_tags_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.leave_historicalavailableleave_history_tags ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.leave_historicalavailableleave_history_tags_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: leave_historicalcompensatoryleaverequest; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.leave_historicalcompensatoryleaverequest (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
history_title character varying(20),
history_description text,
history_highlight boolean,
requested_days double precision,
requested_date date NOT NULL,
description text NOT NULL,
status character varying(30) NOT NULL,
reject_reason text NOT NULL,
history_id integer NOT NULL,
history_date timestamp with time zone NOT NULL,
history_change_reason character varying(100),
history_type character varying(1) NOT NULL,
created_by_id integer,
employee_id_id bigint,
history_relation_id bigint NOT NULL,
history_user_id integer,
leave_type_id_id bigint,
modified_by_id integer
);
ALTER TABLE public.leave_historicalcompensatoryleaverequest OWNER TO erp_user;
--
-- Name: leave_historicalcompensatoryleaverequest_history_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.leave_historicalcompensatoryleaverequest ALTER COLUMN history_id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.leave_historicalcompensatoryleaverequest_history_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: leave_historicalcompensatoryleaverequest_history_tags; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.leave_historicalcompensatoryleaverequest_history_tags (
id bigint NOT NULL,
historicalcompensatoryleaverequest_id integer NOT NULL,
audittag_id bigint NOT NULL
);
ALTER TABLE public.leave_historicalcompensatoryleaverequest_history_tags OWNER TO erp_user;
--
-- Name: leave_historicalcompensatoryleaverequest_history_tags_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.leave_historicalcompensatoryleaverequest_history_tags ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.leave_historicalcompensatoryleaverequest_history_tags_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: leave_historicalleaveallocationrequest; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.leave_historicalleaveallocationrequest (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
history_title character varying(20),
history_description text,
history_highlight boolean,
requested_days double precision,
requested_date date NOT NULL,
description text NOT NULL,
attachment text,
status character varying(30) NOT NULL,
reject_reason text NOT NULL,
history_id integer NOT NULL,
history_date timestamp with time zone NOT NULL,
history_change_reason character varying(100),
history_type character varying(1) NOT NULL,
created_by_id integer,
employee_id_id bigint,
history_relation_id bigint NOT NULL,
history_user_id integer,
leave_type_id_id bigint,
modified_by_id integer
);
ALTER TABLE public.leave_historicalleaveallocationrequest OWNER TO erp_user;
--
-- Name: leave_historicalleaveallocationrequest_history_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.leave_historicalleaveallocationrequest ALTER COLUMN history_id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.leave_historicalleaveallocationrequest_history_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: leave_historicalleaveallocationrequest_history_tags; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.leave_historicalleaveallocationrequest_history_tags (
id bigint NOT NULL,
historicalleaveallocationrequest_id integer NOT NULL,
audittag_id bigint NOT NULL
);
ALTER TABLE public.leave_historicalleaveallocationrequest_history_tags OWNER TO erp_user;
--
-- Name: leave_historicalleaveallocationrequest_history_tags_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.leave_historicalleaveallocationrequest_history_tags ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.leave_historicalleaveallocationrequest_history_tags_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: leave_historicalleaverequest; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.leave_historicalleaverequest (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
history_title character varying(20),
history_description text,
history_highlight boolean,
start_date date NOT NULL,
start_date_breakdown character varying(30) NOT NULL,
end_date date,
end_date_breakdown character varying(30) NOT NULL,
requested_days double precision,
leave_clashes_count integer NOT NULL,
description text NOT NULL,
attachment text,
status character varying(30) NOT NULL,
requested_date date NOT NULL,
approved_available_days double precision NOT NULL,
approved_carryforward_days double precision NOT NULL,
reject_reason text NOT NULL,
history_id integer NOT NULL,
history_date timestamp with time zone NOT NULL,
history_change_reason character varying(100),
history_type character varying(1) NOT NULL,
created_by_id bigint,
employee_id_id bigint,
history_relation_id bigint NOT NULL,
history_user_id integer,
leave_type_id_id bigint,
modified_by_id integer
);
ALTER TABLE public.leave_historicalleaverequest OWNER TO erp_user;
--
-- Name: leave_historicalleaverequest_history_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.leave_historicalleaverequest ALTER COLUMN history_id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.leave_historicalleaverequest_history_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: leave_historicalleaverequest_history_tags; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.leave_historicalleaverequest_history_tags (
id bigint NOT NULL,
historicalleaverequest_id integer NOT NULL,
audittag_id bigint NOT NULL
);
ALTER TABLE public.leave_historicalleaverequest_history_tags OWNER TO erp_user;
--
-- Name: leave_historicalleaverequest_history_tags_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.leave_historicalleaverequest_history_tags ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.leave_historicalleaverequest_history_tags_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: leave_holiday; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.leave_holiday (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
name character varying(30) NOT NULL,
start_date date NOT NULL,
end_date date,
recurring boolean NOT NULL,
company_id_id bigint,
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.leave_holiday OWNER TO erp_user;
--
-- Name: leave_holiday_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.leave_holiday ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.leave_holiday_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: leave_leaveallocationrequest; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.leave_leaveallocationrequest (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
requested_days double precision,
requested_date date NOT NULL,
description text NOT NULL,
attachment character varying(100),
status character varying(30) NOT NULL,
reject_reason text NOT NULL,
created_by_id integer,
employee_id_id bigint NOT NULL,
leave_type_id_id bigint NOT NULL,
modified_by_id integer
);
ALTER TABLE public.leave_leaveallocationrequest OWNER TO erp_user;
--
-- Name: leave_leaveallocationrequest_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.leave_leaveallocationrequest ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.leave_leaveallocationrequest_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: leave_leaveallocationrequestcomment; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.leave_leaveallocationrequestcomment (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
comment text,
created_by_id integer,
employee_id_id bigint NOT NULL,
modified_by_id integer,
request_id_id bigint NOT NULL
);
ALTER TABLE public.leave_leaveallocationrequestcomment OWNER TO erp_user;
--
-- Name: leave_leaveallocationrequestcomment_files; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.leave_leaveallocationrequestcomment_files (
id bigint NOT NULL,
leaveallocationrequestcomment_id bigint NOT NULL,
leaverequestfile_id bigint NOT NULL
);
ALTER TABLE public.leave_leaveallocationrequestcomment_files OWNER TO erp_user;
--
-- Name: leave_leaveallocationrequestcomment_files_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.leave_leaveallocationrequestcomment_files ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.leave_leaveallocationrequestcomment_files_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: leave_leaveallocationrequestcomment_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.leave_leaveallocationrequestcomment ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.leave_leaveallocationrequestcomment_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: leave_leavegeneralsetting; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.leave_leavegeneralsetting (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
compensatory_leave boolean NOT NULL,
company_id_id bigint,
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.leave_leavegeneralsetting OWNER TO erp_user;
--
-- Name: leave_leavegeneralsetting_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.leave_leavegeneralsetting ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.leave_leavegeneralsetting_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: leave_leaverequest; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.leave_leaverequest (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
start_date date NOT NULL,
start_date_breakdown character varying(30) NOT NULL,
end_date date,
end_date_breakdown character varying(30) NOT NULL,
requested_days double precision,
leave_clashes_count integer NOT NULL,
description text NOT NULL,
attachment character varying(100),
status character varying(30) NOT NULL,
requested_date date NOT NULL,
approved_available_days double precision NOT NULL,
approved_carryforward_days double precision NOT NULL,
reject_reason text NOT NULL,
created_by_id bigint,
employee_id_id bigint NOT NULL,
leave_type_id_id bigint NOT NULL,
modified_by_id integer
);
ALTER TABLE public.leave_leaverequest OWNER TO erp_user;
--
-- Name: leave_leaverequest_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.leave_leaverequest ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.leave_leaverequest_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: leave_leaverequestcomment; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.leave_leaverequestcomment (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
comment text,
created_by_id integer,
employee_id_id bigint NOT NULL,
modified_by_id integer,
request_id_id bigint NOT NULL
);
ALTER TABLE public.leave_leaverequestcomment OWNER TO erp_user;
--
-- Name: leave_leaverequestcomment_files; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.leave_leaverequestcomment_files (
id bigint NOT NULL,
leaverequestcomment_id bigint NOT NULL,
leaverequestfile_id bigint NOT NULL
);
ALTER TABLE public.leave_leaverequestcomment_files OWNER TO erp_user;
--
-- Name: leave_leaverequestcomment_files_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.leave_leaverequestcomment_files ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.leave_leaverequestcomment_files_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: leave_leaverequestcomment_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.leave_leaverequestcomment ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.leave_leaverequestcomment_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: leave_leaverequestconditionapproval; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.leave_leaverequestconditionapproval (
id bigint NOT NULL,
sequence integer NOT NULL,
is_approved boolean NOT NULL,
is_rejected boolean NOT NULL,
leave_request_id_id bigint NOT NULL,
manager_id_id bigint NOT NULL
);
ALTER TABLE public.leave_leaverequestconditionapproval OWNER TO erp_user;
--
-- Name: leave_leaverequestconditionapproval_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.leave_leaverequestconditionapproval ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.leave_leaverequestconditionapproval_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: leave_leaverequestfile; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.leave_leaverequestfile (
id bigint NOT NULL,
file character varying(100) NOT NULL
);
ALTER TABLE public.leave_leaverequestfile OWNER TO erp_user;
--
-- Name: leave_leaverequestfile_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.leave_leaverequestfile ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.leave_leaverequestfile_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: leave_leavetype; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.leave_leavetype (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
icon character varying(100),
name character varying(30) NOT NULL,
color character varying(30),
payment character varying(30) NOT NULL,
count double precision,
period_in character varying(30) NOT NULL,
limit_leave boolean NOT NULL,
total_days double precision,
reset boolean NOT NULL,
is_encashable boolean NOT NULL,
reset_based character varying(30),
reset_month character varying(30) NOT NULL,
reset_day character varying(30),
reset_weekend character varying(10),
carryforward_type character varying(30) NOT NULL,
carryforward_max double precision,
carryforward_expire_in integer,
carryforward_expire_period character varying(30),
carryforward_expire_date date,
require_approval character varying(30),
require_attachment character varying(30),
exclude_company_leave character varying(30) NOT NULL,
exclude_holiday character varying(30) NOT NULL,
is_compensatory_leave boolean NOT NULL,
company_id_id bigint,
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.leave_leavetype OWNER TO erp_user;
--
-- Name: leave_leavetype_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.leave_leavetype ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.leave_leavetype_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: leave_overrideleaverequests; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.leave_overrideleaverequests (
leaverequest_ptr_id bigint NOT NULL
);
ALTER TABLE public.leave_overrideleaverequests OWNER TO erp_user;
--
-- Name: leave_restrictleave; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.leave_restrictleave (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
title character varying(200) NOT NULL,
start_date date NOT NULL,
end_date date NOT NULL,
include_all boolean NOT NULL,
description text,
company_id_id bigint,
created_by_id integer,
department_id bigint NOT NULL,
modified_by_id integer
);
ALTER TABLE public.leave_restrictleave OWNER TO erp_user;
--
-- Name: leave_restrictleave_exclued_leave_types; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.leave_restrictleave_exclued_leave_types (
id bigint NOT NULL,
restrictleave_id bigint NOT NULL,
leavetype_id bigint NOT NULL
);
ALTER TABLE public.leave_restrictleave_exclued_leave_types OWNER TO erp_user;
--
-- Name: leave_restrictleave_exclued_leave_types_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.leave_restrictleave_exclued_leave_types ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.leave_restrictleave_exclued_leave_types_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: leave_restrictleave_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.leave_restrictleave ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.leave_restrictleave_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: leave_restrictleave_job_position; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.leave_restrictleave_job_position (
id bigint NOT NULL,
restrictleave_id bigint NOT NULL,
jobposition_id bigint NOT NULL
);
ALTER TABLE public.leave_restrictleave_job_position OWNER TO erp_user;
--
-- Name: leave_restrictleave_job_position_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.leave_restrictleave_job_position ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.leave_restrictleave_job_position_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: leave_restrictleave_spesific_leave_types; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.leave_restrictleave_spesific_leave_types (
id bigint NOT NULL,
restrictleave_id bigint NOT NULL,
leavetype_id bigint NOT NULL
);
ALTER TABLE public.leave_restrictleave_spesific_leave_types OWNER TO erp_user;
--
-- Name: leave_restrictleave_spesific_leave_types_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.leave_restrictleave_spesific_leave_types ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.leave_restrictleave_spesific_leave_types_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: notifications_notification; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.notifications_notification (
id integer NOT NULL,
level character varying(20) NOT NULL,
unread boolean NOT NULL,
actor_object_id character varying(255) NOT NULL,
verb character varying(255) NOT NULL,
description text,
target_object_id character varying(255),
action_object_object_id character varying(255),
"timestamp" timestamp with time zone NOT NULL,
public boolean NOT NULL,
deleted boolean NOT NULL,
emailed boolean NOT NULL,
data jsonb,
verb_en character varying(255),
verb_ar character varying(255),
verb_de character varying(255),
verb_es character varying(255),
verb_fr character varying(255),
action_object_content_type_id integer,
actor_content_type_id integer NOT NULL,
recipient_id integer NOT NULL,
target_content_type_id integer
);
ALTER TABLE public.notifications_notification OWNER TO erp_user;
--
-- Name: notifications_notification_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.notifications_notification ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.notifications_notification_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: offboarding_employeetask; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.offboarding_employeetask (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
status character varying(20) NOT NULL,
description text,
created_by_id integer,
employee_id_id bigint,
modified_by_id integer,
task_id_id bigint NOT NULL
);
ALTER TABLE public.offboarding_employeetask OWNER TO erp_user;
--
-- Name: offboarding_employeetask_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.offboarding_employeetask ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.offboarding_employeetask_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: offboarding_exitreason; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.offboarding_exitreason (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
title character varying(50) NOT NULL,
description text NOT NULL,
created_by_id integer,
modified_by_id integer,
offboarding_employee_id_id bigint NOT NULL
);
ALTER TABLE public.offboarding_exitreason OWNER TO erp_user;
--
-- Name: offboarding_exitreason_attachments; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.offboarding_exitreason_attachments (
id bigint NOT NULL,
exitreason_id bigint NOT NULL,
offboardingstagemultiplefile_id bigint NOT NULL
);
ALTER TABLE public.offboarding_exitreason_attachments OWNER TO erp_user;
--
-- Name: offboarding_exitreason_attachments_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.offboarding_exitreason_attachments ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.offboarding_exitreason_attachments_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: offboarding_exitreason_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.offboarding_exitreason ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.offboarding_exitreason_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: offboarding_historicalemployeetask; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.offboarding_historicalemployeetask (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
history_title character varying(20),
history_description text,
history_highlight boolean,
status character varying(20) NOT NULL,
description text,
history_id integer NOT NULL,
history_date timestamp with time zone NOT NULL,
history_change_reason character varying(100),
history_type character varying(1) NOT NULL,
created_by_id integer,
employee_id_id bigint,
history_relation_id bigint NOT NULL,
history_user_id integer,
modified_by_id integer,
task_id_id bigint
);
ALTER TABLE public.offboarding_historicalemployeetask OWNER TO erp_user;
--
-- Name: offboarding_historicalemployeetask_history_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.offboarding_historicalemployeetask ALTER COLUMN history_id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.offboarding_historicalemployeetask_history_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: offboarding_historicalemployeetask_history_tags; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.offboarding_historicalemployeetask_history_tags (
id bigint NOT NULL,
historicalemployeetask_id integer NOT NULL,
audittag_id bigint NOT NULL
);
ALTER TABLE public.offboarding_historicalemployeetask_history_tags OWNER TO erp_user;
--
-- Name: offboarding_historicalemployeetask_history_tags_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.offboarding_historicalemployeetask_history_tags ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.offboarding_historicalemployeetask_history_tags_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: offboarding_offboarding; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.offboarding_offboarding (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
title character varying(20) NOT NULL,
description text NOT NULL,
status character varying(10) NOT NULL,
company_id_id bigint,
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.offboarding_offboarding OWNER TO erp_user;
--
-- Name: offboarding_offboarding_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.offboarding_offboarding ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.offboarding_offboarding_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: offboarding_offboarding_managers; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.offboarding_offboarding_managers (
id bigint NOT NULL,
offboarding_id bigint NOT NULL,
employee_id bigint NOT NULL
);
ALTER TABLE public.offboarding_offboarding_managers OWNER TO erp_user;
--
-- Name: offboarding_offboarding_managers_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.offboarding_offboarding_managers ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.offboarding_offboarding_managers_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: offboarding_offboardingemployee; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.offboarding_offboardingemployee (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
notice_period integer,
unit character varying(10),
notice_period_starts date,
notice_period_ends date,
created_by_id integer,
employee_id_id bigint NOT NULL,
modified_by_id integer,
stage_id_id bigint
);
ALTER TABLE public.offboarding_offboardingemployee OWNER TO erp_user;
--
-- Name: offboarding_offboardingemployee_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.offboarding_offboardingemployee ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.offboarding_offboardingemployee_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: offboarding_offboardinggeneralsetting; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.offboarding_offboardinggeneralsetting (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
resignation_request boolean NOT NULL,
company_id_id bigint,
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.offboarding_offboardinggeneralsetting OWNER TO erp_user;
--
-- Name: offboarding_offboardinggeneralsetting_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.offboarding_offboardinggeneralsetting ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.offboarding_offboardinggeneralsetting_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: offboarding_offboardingnote; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.offboarding_offboardingnote (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
description text,
created_by_id integer,
employee_id_id bigint,
modified_by_id integer,
note_by_id bigint,
stage_id_id bigint
);
ALTER TABLE public.offboarding_offboardingnote OWNER TO erp_user;
--
-- Name: offboarding_offboardingnote_attachments; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.offboarding_offboardingnote_attachments (
id bigint NOT NULL,
offboardingnote_id bigint NOT NULL,
offboardingstagemultiplefile_id bigint NOT NULL
);
ALTER TABLE public.offboarding_offboardingnote_attachments OWNER TO erp_user;
--
-- Name: offboarding_offboardingnote_attachments_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.offboarding_offboardingnote_attachments ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.offboarding_offboardingnote_attachments_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: offboarding_offboardingnote_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.offboarding_offboardingnote ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.offboarding_offboardingnote_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: offboarding_offboardingstage; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.offboarding_offboardingstage (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
title character varying(20) NOT NULL,
type character varying(13) NOT NULL,
sequence integer NOT NULL,
created_by_id integer,
modified_by_id integer,
offboarding_id_id bigint NOT NULL
);
ALTER TABLE public.offboarding_offboardingstage OWNER TO erp_user;
--
-- Name: offboarding_offboardingstage_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.offboarding_offboardingstage ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.offboarding_offboardingstage_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: offboarding_offboardingstage_managers; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.offboarding_offboardingstage_managers (
id bigint NOT NULL,
offboardingstage_id bigint NOT NULL,
employee_id bigint NOT NULL
);
ALTER TABLE public.offboarding_offboardingstage_managers OWNER TO erp_user;
--
-- Name: offboarding_offboardingstage_managers_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.offboarding_offboardingstage_managers ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.offboarding_offboardingstage_managers_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: offboarding_offboardingstagemultiplefile; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.offboarding_offboardingstagemultiplefile (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
attachment character varying(100) NOT NULL,
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.offboarding_offboardingstagemultiplefile OWNER TO erp_user;
--
-- Name: offboarding_offboardingstagemultiplefile_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.offboarding_offboardingstagemultiplefile ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.offboarding_offboardingstagemultiplefile_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: offboarding_offboardingtask; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.offboarding_offboardingtask (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
title character varying(30) NOT NULL,
created_by_id integer,
modified_by_id integer,
stage_id_id bigint
);
ALTER TABLE public.offboarding_offboardingtask OWNER TO erp_user;
--
-- Name: offboarding_offboardingtask_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.offboarding_offboardingtask ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.offboarding_offboardingtask_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: offboarding_offboardingtask_managers; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.offboarding_offboardingtask_managers (
id bigint NOT NULL,
offboardingtask_id bigint NOT NULL,
employee_id bigint NOT NULL
);
ALTER TABLE public.offboarding_offboardingtask_managers OWNER TO erp_user;
--
-- Name: offboarding_offboardingtask_managers_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.offboarding_offboardingtask_managers ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.offboarding_offboardingtask_managers_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: offboarding_resignationletter; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.offboarding_resignationletter (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
title character varying(100),
description text,
planned_to_leave_on date NOT NULL,
status character varying(10) NOT NULL,
created_by_id integer,
employee_id_id bigint NOT NULL,
modified_by_id integer,
offboarding_employee_id_id bigint
);
ALTER TABLE public.offboarding_resignationletter OWNER TO erp_user;
--
-- Name: offboarding_resignationletter_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.offboarding_resignationletter ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.offboarding_resignationletter_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: onboarding_candidatestage; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.onboarding_candidatestage (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
onboarding_end_date date,
sequence integer,
candidate_id_id bigint NOT NULL,
created_by_id integer,
modified_by_id integer,
onboarding_stage_id_id bigint NOT NULL
);
ALTER TABLE public.onboarding_candidatestage OWNER TO erp_user;
--
-- Name: onboarding_candidatestage_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.onboarding_candidatestage ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.onboarding_candidatestage_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: onboarding_candidatetask; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.onboarding_candidatetask (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
status character varying(50),
candidate_id_id bigint NOT NULL,
created_by_id integer,
modified_by_id integer,
onboarding_task_id_id bigint NOT NULL,
stage_id_id bigint
);
ALTER TABLE public.onboarding_candidatetask OWNER TO erp_user;
--
-- Name: onboarding_candidatetask_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.onboarding_candidatetask ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.onboarding_candidatetask_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: onboarding_historicalcandidatetask; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.onboarding_historicalcandidatetask (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
history_title character varying(20),
history_description text,
history_highlight boolean,
status character varying(50),
history_id integer NOT NULL,
history_date timestamp with time zone NOT NULL,
history_change_reason character varying(100),
history_type character varying(1) NOT NULL,
candidate_id_id bigint,
created_by_id integer,
history_relation_id bigint NOT NULL,
history_user_id integer,
modified_by_id integer,
onboarding_task_id_id bigint,
stage_id_id bigint
);
ALTER TABLE public.onboarding_historicalcandidatetask OWNER TO erp_user;
--
-- Name: onboarding_historicalcandidatetask_history_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.onboarding_historicalcandidatetask ALTER COLUMN history_id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.onboarding_historicalcandidatetask_history_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: onboarding_historicalcandidatetask_history_tags; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.onboarding_historicalcandidatetask_history_tags (
id bigint NOT NULL,
historicalcandidatetask_id integer NOT NULL,
audittag_id bigint NOT NULL
);
ALTER TABLE public.onboarding_historicalcandidatetask_history_tags OWNER TO erp_user;
--
-- Name: onboarding_historicalcandidatetask_history_tags_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.onboarding_historicalcandidatetask_history_tags ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.onboarding_historicalcandidatetask_history_tags_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: onboarding_onboardingportal; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.onboarding_onboardingportal (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
token character varying(200) NOT NULL,
used boolean NOT NULL,
count integer NOT NULL,
profile character varying(100),
candidate_id_id bigint NOT NULL,
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.onboarding_onboardingportal OWNER TO erp_user;
--
-- Name: onboarding_onboardingportal_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.onboarding_onboardingportal ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.onboarding_onboardingportal_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: onboarding_onboardingstage; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.onboarding_onboardingstage (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
stage_title character varying(200) NOT NULL,
sequence integer,
is_final_stage boolean NOT NULL,
created_by_id integer,
modified_by_id integer,
recruitment_id_id bigint
);
ALTER TABLE public.onboarding_onboardingstage OWNER TO erp_user;
--
-- Name: onboarding_onboardingstage_employee_id; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.onboarding_onboardingstage_employee_id (
id bigint NOT NULL,
onboardingstage_id bigint NOT NULL,
employee_id bigint NOT NULL
);
ALTER TABLE public.onboarding_onboardingstage_employee_id OWNER TO erp_user;
--
-- Name: onboarding_onboardingstage_employee_id_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.onboarding_onboardingstage_employee_id ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.onboarding_onboardingstage_employee_id_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: onboarding_onboardingstage_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.onboarding_onboardingstage ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.onboarding_onboardingstage_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: onboarding_onboardingtask; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.onboarding_onboardingtask (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
task_title character varying(200) NOT NULL,
created_by_id integer,
modified_by_id integer,
stage_id_id bigint
);
ALTER TABLE public.onboarding_onboardingtask OWNER TO erp_user;
--
-- Name: onboarding_onboardingtask_candidates; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.onboarding_onboardingtask_candidates (
id bigint NOT NULL,
onboardingtask_id bigint NOT NULL,
candidate_id bigint NOT NULL
);
ALTER TABLE public.onboarding_onboardingtask_candidates OWNER TO erp_user;
--
-- Name: onboarding_onboardingtask_candidates_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.onboarding_onboardingtask_candidates ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.onboarding_onboardingtask_candidates_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: onboarding_onboardingtask_employee_id; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.onboarding_onboardingtask_employee_id (
id bigint NOT NULL,
onboardingtask_id bigint NOT NULL,
employee_id bigint NOT NULL
);
ALTER TABLE public.onboarding_onboardingtask_employee_id OWNER TO erp_user;
--
-- Name: onboarding_onboardingtask_employee_id_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.onboarding_onboardingtask_employee_id ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.onboarding_onboardingtask_employee_id_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: onboarding_onboardingtask_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.onboarding_onboardingtask ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.onboarding_onboardingtask_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: payroll_allowance; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.payroll_allowance (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
title character varying(255) NOT NULL,
one_time_date date,
include_active_employees boolean NOT NULL,
is_taxable boolean NOT NULL,
is_condition_based boolean NOT NULL,
field character varying(255),
condition character varying(255),
value character varying(255),
is_fixed boolean NOT NULL,
amount double precision,
based_on character varying(255),
rate double precision,
per_attendance_fixed_amount double precision,
per_children_fixed_amount double precision,
shift_per_attendance_amount double precision,
amount_per_one_hr double precision,
work_type_per_attendance_amount double precision,
has_max_limit boolean NOT NULL,
maximum_amount double precision,
maximum_unit character varying(20),
if_choice character varying(10) NOT NULL,
if_condition character varying(10) NOT NULL,
if_amount double precision NOT NULL,
start_range double precision,
end_range double precision,
only_show_under_employee boolean NOT NULL,
is_loan boolean NOT NULL,
company_id_id bigint,
created_by_id integer,
modified_by_id integer,
shift_id_id bigint,
work_type_id_id bigint
);
ALTER TABLE public.payroll_allowance OWNER TO erp_user;
--
-- Name: payroll_allowance_exclude_employees; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.payroll_allowance_exclude_employees (
id bigint NOT NULL,
allowance_id bigint NOT NULL,
employee_id bigint NOT NULL
);
ALTER TABLE public.payroll_allowance_exclude_employees OWNER TO erp_user;
--
-- Name: payroll_allowance_exclude_employees_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.payroll_allowance_exclude_employees ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.payroll_allowance_exclude_employees_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: payroll_allowance_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.payroll_allowance ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.payroll_allowance_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: payroll_allowance_other_conditions; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.payroll_allowance_other_conditions (
id bigint NOT NULL,
allowance_id bigint NOT NULL,
multiplecondition_id bigint NOT NULL
);
ALTER TABLE public.payroll_allowance_other_conditions OWNER TO erp_user;
--
-- Name: payroll_allowance_other_conditions_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.payroll_allowance_other_conditions ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.payroll_allowance_other_conditions_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: payroll_allowance_specific_employees; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.payroll_allowance_specific_employees (
id bigint NOT NULL,
allowance_id bigint NOT NULL,
employee_id bigint NOT NULL
);
ALTER TABLE public.payroll_allowance_specific_employees OWNER TO erp_user;
--
-- Name: payroll_allowance_specific_employees_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.payroll_allowance_specific_employees ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.payroll_allowance_specific_employees_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: payroll_contract; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.payroll_contract (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
contract_name character varying(250) NOT NULL,
contract_start_date date NOT NULL,
contract_end_date date,
wage_type character varying(250) NOT NULL,
pay_frequency character varying(20),
wage double precision,
contract_status character varying(250) NOT NULL,
notice_period_in_days integer NOT NULL,
contract_document character varying(100),
deduct_leave_from_basic_pay boolean NOT NULL,
calculate_daily_leave_amount boolean NOT NULL,
deduction_for_one_leave_amount double precision,
note text,
created_by_id integer,
department_id bigint,
employee_id_id bigint NOT NULL,
filing_status_id bigint,
job_position_id bigint,
job_role_id bigint,
modified_by_id integer,
shift_id bigint,
work_type_id bigint
);
ALTER TABLE public.payroll_contract OWNER TO erp_user;
--
-- Name: payroll_contract_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.payroll_contract ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.payroll_contract_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: payroll_deduction; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.payroll_deduction (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
title character varying(255) NOT NULL,
one_time_date date,
include_active_employees boolean NOT NULL,
is_tax boolean NOT NULL,
is_pretax boolean NOT NULL,
is_condition_based boolean NOT NULL,
field character varying(255),
condition character varying(255),
value character varying(255),
update_compensation character varying(10),
is_fixed boolean NOT NULL,
amount double precision,
based_on character varying(255),
rate double precision,
employer_rate double precision NOT NULL,
has_max_limit boolean NOT NULL,
maximum_amount double precision,
maximum_unit character varying(20),
if_choice character varying(10) NOT NULL,
if_condition character varying(10) NOT NULL,
if_amount double precision NOT NULL,
start_range double precision,
end_range double precision,
only_show_under_employee boolean NOT NULL,
is_installment boolean NOT NULL,
company_id_id bigint,
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.payroll_deduction OWNER TO erp_user;
--
-- Name: payroll_deduction_exclude_employees; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.payroll_deduction_exclude_employees (
id bigint NOT NULL,
deduction_id bigint NOT NULL,
employee_id bigint NOT NULL
);
ALTER TABLE public.payroll_deduction_exclude_employees OWNER TO erp_user;
--
-- Name: payroll_deduction_exclude_employees_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.payroll_deduction_exclude_employees ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.payroll_deduction_exclude_employees_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: payroll_deduction_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.payroll_deduction ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.payroll_deduction_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: payroll_deduction_other_conditions; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.payroll_deduction_other_conditions (
id bigint NOT NULL,
deduction_id bigint NOT NULL,
multiplecondition_id bigint NOT NULL
);
ALTER TABLE public.payroll_deduction_other_conditions OWNER TO erp_user;
--
-- Name: payroll_deduction_other_conditions_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.payroll_deduction_other_conditions ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.payroll_deduction_other_conditions_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: payroll_deduction_specific_employees; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.payroll_deduction_specific_employees (
id bigint NOT NULL,
deduction_id bigint NOT NULL,
employee_id bigint NOT NULL
);
ALTER TABLE public.payroll_deduction_specific_employees OWNER TO erp_user;
--
-- Name: payroll_deduction_specific_employees_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.payroll_deduction_specific_employees ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.payroll_deduction_specific_employees_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: payroll_encashmentgeneralsettings; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.payroll_encashmentgeneralsettings (
id bigint NOT NULL,
bonus_amount integer NOT NULL,
leave_amount integer
);
ALTER TABLE public.payroll_encashmentgeneralsettings OWNER TO erp_user;
--
-- Name: payroll_encashmentgeneralsettings_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.payroll_encashmentgeneralsettings ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.payroll_encashmentgeneralsettings_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: payroll_filingstatus; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.payroll_filingstatus (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
filing_status character varying(30) NOT NULL,
based_on character varying(255) NOT NULL,
use_py boolean NOT NULL,
python_code text,
description text NOT NULL,
company_id_id bigint,
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.payroll_filingstatus OWNER TO erp_user;
--
-- Name: payroll_filingstatus_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.payroll_filingstatus ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.payroll_filingstatus_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: payroll_historicalcontract; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.payroll_historicalcontract (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
history_title character varying(20),
history_description text,
history_highlight boolean,
contract_name character varying(250) NOT NULL,
contract_start_date date NOT NULL,
contract_end_date date,
wage_type character varying(250) NOT NULL,
pay_frequency character varying(20),
wage double precision,
contract_status character varying(250) NOT NULL,
notice_period_in_days integer NOT NULL,
contract_document text,
deduct_leave_from_basic_pay boolean NOT NULL,
calculate_daily_leave_amount boolean NOT NULL,
deduction_for_one_leave_amount double precision,
note text,
history_id integer NOT NULL,
history_date timestamp with time zone NOT NULL,
history_change_reason character varying(100),
history_type character varying(1) NOT NULL,
created_by_id integer,
department_id bigint,
employee_id_id bigint,
filing_status_id bigint,
history_relation_id bigint NOT NULL,
history_user_id integer,
job_position_id bigint,
job_role_id bigint,
modified_by_id integer,
shift_id bigint,
work_type_id bigint
);
ALTER TABLE public.payroll_historicalcontract OWNER TO erp_user;
--
-- Name: payroll_historicalcontract_history_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.payroll_historicalcontract ALTER COLUMN history_id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.payroll_historicalcontract_history_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: payroll_historicalcontract_history_tags; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.payroll_historicalcontract_history_tags (
id bigint NOT NULL,
historicalcontract_id integer NOT NULL,
audittag_id bigint NOT NULL
);
ALTER TABLE public.payroll_historicalcontract_history_tags OWNER TO erp_user;
--
-- Name: payroll_historicalcontract_history_tags_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.payroll_historicalcontract_history_tags ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.payroll_historicalcontract_history_tags_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: payroll_historicalpayslip; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.payroll_historicalpayslip (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
history_title character varying(20),
history_description text,
history_highlight boolean,
group_name character varying(50),
reference character varying(255),
start_date date NOT NULL,
end_date date NOT NULL,
pay_head_data jsonb NOT NULL,
contract_wage double precision,
basic_pay double precision,
gross_pay double precision,
deduction double precision,
net_pay double precision,
status character varying(20),
sent_to_employee boolean,
history_id integer NOT NULL,
history_date timestamp with time zone NOT NULL,
history_change_reason character varying(100),
history_type character varying(1) NOT NULL,
created_by_id integer,
employee_id_id bigint,
history_relation_id bigint NOT NULL,
history_user_id integer,
modified_by_id integer
);
ALTER TABLE public.payroll_historicalpayslip OWNER TO erp_user;
--
-- Name: payroll_historicalpayslip_history_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.payroll_historicalpayslip ALTER COLUMN history_id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.payroll_historicalpayslip_history_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: payroll_historicalpayslip_history_tags; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.payroll_historicalpayslip_history_tags (
id bigint NOT NULL,
historicalpayslip_id integer NOT NULL,
audittag_id bigint NOT NULL
);
ALTER TABLE public.payroll_historicalpayslip_history_tags OWNER TO erp_user;
--
-- Name: payroll_historicalpayslip_history_tags_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.payroll_historicalpayslip_history_tags ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.payroll_historicalpayslip_history_tags_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: payroll_loanaccount; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.payroll_loanaccount (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
type character varying(15) NOT NULL,
title character varying(20) NOT NULL,
loan_amount double precision NOT NULL,
provided_date date NOT NULL,
description text,
is_fixed boolean NOT NULL,
rate double precision NOT NULL,
installment_amount double precision,
installments integer NOT NULL,
installment_start_date date NOT NULL,
apply_on character varying(20) NOT NULL,
settled boolean NOT NULL,
settled_date timestamp with time zone,
allowance_id_id bigint,
asset_id_id bigint,
created_by_id integer,
employee_id_id bigint NOT NULL,
modified_by_id integer
);
ALTER TABLE public.payroll_loanaccount OWNER TO erp_user;
--
-- Name: payroll_loanaccount_deduction_ids; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.payroll_loanaccount_deduction_ids (
id bigint NOT NULL,
loanaccount_id bigint NOT NULL,
deduction_id bigint NOT NULL
);
ALTER TABLE public.payroll_loanaccount_deduction_ids OWNER TO erp_user;
--
-- Name: payroll_loanaccount_deduction_ids_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.payroll_loanaccount_deduction_ids ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.payroll_loanaccount_deduction_ids_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: payroll_loanaccount_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.payroll_loanaccount ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.payroll_loanaccount_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: payroll_multiplecondition; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.payroll_multiplecondition (
id bigint NOT NULL,
field character varying(255) NOT NULL,
condition character varying(255),
value character varying(255)
);
ALTER TABLE public.payroll_multiplecondition OWNER TO erp_user;
--
-- Name: payroll_multiplecondition_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.payroll_multiplecondition ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.payroll_multiplecondition_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: payroll_overrideattendance; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.payroll_overrideattendance (
attendance_ptr_id bigint NOT NULL
);
ALTER TABLE public.payroll_overrideattendance OWNER TO erp_user;
--
-- Name: payroll_overrideleaverequest; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.payroll_overrideleaverequest (
leaverequest_ptr_id bigint NOT NULL
);
ALTER TABLE public.payroll_overrideleaverequest OWNER TO erp_user;
--
-- Name: payroll_payrollgeneralsetting; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.payroll_payrollgeneralsetting (
id bigint NOT NULL,
notice_period integer NOT NULL,
company_id_id bigint
);
ALTER TABLE public.payroll_payrollgeneralsetting OWNER TO erp_user;
--
-- Name: payroll_payrollgeneralsetting_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.payroll_payrollgeneralsetting ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.payroll_payrollgeneralsetting_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: payroll_payrollsettings; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.payroll_payrollsettings (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
currency_symbol character varying(5),
"position" character varying(15),
company_id_id bigint,
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.payroll_payrollsettings OWNER TO erp_user;
--
-- Name: payroll_payrollsettings_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.payroll_payrollsettings ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.payroll_payrollsettings_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: payroll_payslip; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.payroll_payslip (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
group_name character varying(50),
reference character varying(255),
start_date date NOT NULL,
end_date date NOT NULL,
pay_head_data jsonb NOT NULL,
contract_wage double precision,
basic_pay double precision,
gross_pay double precision,
deduction double precision,
net_pay double precision,
status character varying(20),
sent_to_employee boolean,
created_by_id integer,
employee_id_id bigint NOT NULL,
modified_by_id integer
);
ALTER TABLE public.payroll_payslip OWNER TO erp_user;
--
-- Name: payroll_payslip_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.payroll_payslip ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.payroll_payslip_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: payroll_payslip_installment_ids; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.payroll_payslip_installment_ids (
id bigint NOT NULL,
payslip_id bigint NOT NULL,
deduction_id bigint NOT NULL
);
ALTER TABLE public.payroll_payslip_installment_ids OWNER TO erp_user;
--
-- Name: payroll_payslip_installment_ids_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.payroll_payslip_installment_ids ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.payroll_payslip_installment_ids_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: payroll_payslipautogenerate; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.payroll_payslipautogenerate (
id bigint NOT NULL,
generate_day character varying(30) NOT NULL,
auto_generate boolean NOT NULL,
company_id_id bigint
);
ALTER TABLE public.payroll_payslipautogenerate OWNER TO erp_user;
--
-- Name: payroll_payslipautogenerate_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.payroll_payslipautogenerate ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.payroll_payslipautogenerate_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: payroll_reimbursement; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.payroll_reimbursement (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
title character varying(50) NOT NULL,
type character varying(16) NOT NULL,
allowance_on date NOT NULL,
attachment character varying(100),
ad_to_encash double precision NOT NULL,
cfd_to_encash double precision NOT NULL,
bonus_to_encash integer NOT NULL,
amount double precision NOT NULL,
status character varying(10) NOT NULL,
description text,
allowance_id_id bigint,
approved_by_id bigint,
created_by_id integer,
employee_id_id bigint NOT NULL,
leave_type_id_id bigint,
modified_by_id integer
);
ALTER TABLE public.payroll_reimbursement OWNER TO erp_user;
--
-- Name: payroll_reimbursement_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.payroll_reimbursement ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.payroll_reimbursement_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: payroll_reimbursement_other_attachments; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.payroll_reimbursement_other_attachments (
id bigint NOT NULL,
reimbursement_id bigint NOT NULL,
reimbursementmultipleattachment_id bigint NOT NULL
);
ALTER TABLE public.payroll_reimbursement_other_attachments OWNER TO erp_user;
--
-- Name: payroll_reimbursement_other_attachments_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.payroll_reimbursement_other_attachments ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.payroll_reimbursement_other_attachments_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: payroll_reimbursementfile; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.payroll_reimbursementfile (
id bigint NOT NULL,
file character varying(100) NOT NULL
);
ALTER TABLE public.payroll_reimbursementfile OWNER TO erp_user;
--
-- Name: payroll_reimbursementfile_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.payroll_reimbursementfile ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.payroll_reimbursementfile_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: payroll_reimbursementmultipleattachment; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.payroll_reimbursementmultipleattachment (
id bigint NOT NULL,
attachment character varying(100) NOT NULL
);
ALTER TABLE public.payroll_reimbursementmultipleattachment OWNER TO erp_user;
--
-- Name: payroll_reimbursementmultipleattachment_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.payroll_reimbursementmultipleattachment ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.payroll_reimbursementmultipleattachment_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: payroll_reimbursementrequestcomment; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.payroll_reimbursementrequestcomment (
id bigint NOT NULL,
is_active boolean NOT NULL,
comment text,
created_at timestamp with time zone,
created_by_id integer,
employee_id_id bigint NOT NULL,
modified_by_id integer,
request_id_id bigint NOT NULL
);
ALTER TABLE public.payroll_reimbursementrequestcomment OWNER TO erp_user;
--
-- Name: payroll_reimbursementrequestcomment_files; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.payroll_reimbursementrequestcomment_files (
id bigint NOT NULL,
reimbursementrequestcomment_id bigint NOT NULL,
reimbursementfile_id bigint NOT NULL
);
ALTER TABLE public.payroll_reimbursementrequestcomment_files OWNER TO erp_user;
--
-- Name: payroll_reimbursementrequestcomment_files_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.payroll_reimbursementrequestcomment_files ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.payroll_reimbursementrequestcomment_files_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: payroll_reimbursementrequestcomment_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.payroll_reimbursementrequestcomment ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.payroll_reimbursementrequestcomment_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: payroll_taxbracket; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.payroll_taxbracket (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
min_income double precision NOT NULL,
max_income double precision,
tax_rate double precision NOT NULL,
created_by_id integer,
filing_status_id_id bigint NOT NULL,
modified_by_id integer
);
ALTER TABLE public.payroll_taxbracket OWNER TO erp_user;
--
-- Name: payroll_taxbracket_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.payroll_taxbracket ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.payroll_taxbracket_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: payroll_workrecord; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.payroll_workrecord (
id bigint NOT NULL,
record_name character varying(250),
work_record_type character varying(5),
date date,
at_work character varying(5),
min_hour character varying(5),
at_work_second integer,
min_hour_second integer,
note text NOT NULL,
message character varying(30),
is_attendance_record boolean NOT NULL,
is_leave_record boolean NOT NULL,
day_percentage double precision NOT NULL,
last_update timestamp with time zone,
employee_id_id bigint NOT NULL
);
ALTER TABLE public.payroll_workrecord OWNER TO erp_user;
--
-- Name: payroll_workrecord_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.payroll_workrecord ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.payroll_workrecord_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: pms_anonymousfeedback; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.pms_anonymousfeedback (
id bigint NOT NULL,
feedback_subject character varying(100) NOT NULL,
based_on character varying(50) NOT NULL,
status character varying(50) NOT NULL,
created_at date NOT NULL,
archive boolean,
anonymous_feedback_id character varying(10),
feedback_description text,
department_id_id bigint,
employee_id_id bigint,
job_position_id_id bigint
);
ALTER TABLE public.pms_anonymousfeedback OWNER TO erp_user;
--
-- Name: pms_anonymousfeedback_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.pms_anonymousfeedback ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.pms_anonymousfeedback_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: pms_answer; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.pms_answer (
id bigint NOT NULL,
answer jsonb,
employee_id_id bigint,
feedback_id_id bigint NOT NULL,
question_id_id bigint
);
ALTER TABLE public.pms_answer OWNER TO erp_user;
--
-- Name: pms_answer_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.pms_answer ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.pms_answer_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: pms_bonuspointsetting; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.pms_bonuspointsetting (
id bigint NOT NULL,
model character varying(100) NOT NULL,
applicable_for character varying(50),
bonus_for character varying(25) NOT NULL,
field_1 character varying(25),
conditions character varying(25),
field_2 character varying(25),
points integer NOT NULL,
is_active boolean NOT NULL
);
ALTER TABLE public.pms_bonuspointsetting OWNER TO erp_user;
--
-- Name: pms_bonuspointsetting_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.pms_bonuspointsetting ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.pms_bonuspointsetting_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: pms_comment; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.pms_comment (
id bigint NOT NULL,
comment character varying(150) NOT NULL,
created_at timestamp with time zone,
employee_id_id bigint,
employee_objective_id_id bigint
);
ALTER TABLE public.pms_comment OWNER TO erp_user;
--
-- Name: pms_comment_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.pms_comment ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.pms_comment_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: pms_employeebonuspoint; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.pms_employeebonuspoint (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
bonus_point integer NOT NULL,
instance character varying(150),
based_on character varying(150) NOT NULL,
bonus_point_id_id bigint,
created_by_id integer,
employee_id_id bigint,
modified_by_id integer
);
ALTER TABLE public.pms_employeebonuspoint OWNER TO erp_user;
--
-- Name: pms_employeebonuspoint_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.pms_employeebonuspoint ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.pms_employeebonuspoint_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: pms_employeekeyresult; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.pms_employeekeyresult (
id bigint NOT NULL,
key_result character varying(60),
key_result_description text,
progress_type character varying(60),
status character varying(20),
created_at date,
updated_at date,
start_value integer,
current_value integer,
target_value integer,
start_date date,
end_date date,
progress_percentage integer NOT NULL,
employee_objective_id_id bigint,
key_result_id_id bigint
);
ALTER TABLE public.pms_employeekeyresult OWNER TO erp_user;
--
-- Name: pms_employeekeyresult_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.pms_employeekeyresult ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.pms_employeekeyresult_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: pms_employeeobjective; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.pms_employeeobjective (
id bigint NOT NULL,
is_active boolean NOT NULL,
objective character varying(100),
objective_description text,
created_at date NOT NULL,
updated_at date NOT NULL,
start_date date NOT NULL,
end_date date NOT NULL,
status character varying(20) NOT NULL,
progress_percentage integer NOT NULL,
archive boolean NOT NULL,
created_by_id integer,
employee_id_id bigint,
modified_by_id integer,
objective_id_id bigint
);
ALTER TABLE public.pms_employeeobjective OWNER TO erp_user;
--
-- Name: pms_employeeobjective_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.pms_employeeobjective ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.pms_employeeobjective_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: pms_employeeobjective_key_result_id; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.pms_employeeobjective_key_result_id (
id bigint NOT NULL,
employeeobjective_id bigint NOT NULL,
keyresult_id bigint NOT NULL
);
ALTER TABLE public.pms_employeeobjective_key_result_id OWNER TO erp_user;
--
-- Name: pms_employeeobjective_key_result_id_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.pms_employeeobjective_key_result_id ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.pms_employeeobjective_key_result_id_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: pms_feedback; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.pms_feedback (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
review_cycle character varying(100) NOT NULL,
status character varying(50) NOT NULL,
archive boolean,
start_date date NOT NULL,
end_date date,
cyclic_feedback boolean NOT NULL,
cyclic_feedback_days_count integer,
cyclic_feedback_period character varying(50),
cyclic_next_start_date date,
cyclic_next_end_date date,
created_by_id integer,
employee_id_id bigint NOT NULL,
manager_id_id bigint,
modified_by_id integer,
question_template_id_id bigint NOT NULL
);
ALTER TABLE public.pms_feedback OWNER TO erp_user;
--
-- Name: pms_feedback_colleague_id; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.pms_feedback_colleague_id (
id bigint NOT NULL,
feedback_id bigint NOT NULL,
employee_id bigint NOT NULL
);
ALTER TABLE public.pms_feedback_colleague_id OWNER TO erp_user;
--
-- Name: pms_feedback_colleague_id_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.pms_feedback_colleague_id ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.pms_feedback_colleague_id_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: pms_feedback_employee_key_results_id; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.pms_feedback_employee_key_results_id (
id bigint NOT NULL,
feedback_id bigint NOT NULL,
employeekeyresult_id bigint NOT NULL
);
ALTER TABLE public.pms_feedback_employee_key_results_id OWNER TO erp_user;
--
-- Name: pms_feedback_employee_key_results_id_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.pms_feedback_employee_key_results_id ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.pms_feedback_employee_key_results_id_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: pms_feedback_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.pms_feedback ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.pms_feedback_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: pms_feedback_subordinate_id; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.pms_feedback_subordinate_id (
id bigint NOT NULL,
feedback_id bigint NOT NULL,
employee_id bigint NOT NULL
);
ALTER TABLE public.pms_feedback_subordinate_id OWNER TO erp_user;
--
-- Name: pms_feedback_subordinate_id_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.pms_feedback_subordinate_id ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.pms_feedback_subordinate_id_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: pms_historicalcomment; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.pms_historicalcomment (
id bigint NOT NULL,
history_title character varying(20),
history_description text,
history_highlight boolean,
created_at timestamp with time zone,
history_id integer NOT NULL,
history_date timestamp with time zone NOT NULL,
history_change_reason character varying(100),
history_type character varying(1) NOT NULL,
employee_id_id bigint,
employee_objective_id_id bigint,
history_user_id integer
);
ALTER TABLE public.pms_historicalcomment OWNER TO erp_user;
--
-- Name: pms_historicalcomment_history_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.pms_historicalcomment ALTER COLUMN history_id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.pms_historicalcomment_history_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: pms_historicalcomment_history_tags; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.pms_historicalcomment_history_tags (
id bigint NOT NULL,
historicalcomment_id integer NOT NULL,
audittag_id bigint NOT NULL
);
ALTER TABLE public.pms_historicalcomment_history_tags OWNER TO erp_user;
--
-- Name: pms_historicalcomment_history_tags_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.pms_historicalcomment_history_tags ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.pms_historicalcomment_history_tags_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: pms_historicalemployeekeyresult; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.pms_historicalemployeekeyresult (
id bigint NOT NULL,
history_title character varying(20),
history_description text,
history_highlight boolean,
key_result character varying(60),
key_result_description text,
progress_type character varying(60),
status character varying(20),
created_at date,
updated_at date,
start_value integer,
current_value integer,
target_value integer,
start_date date,
end_date date,
progress_percentage integer NOT NULL,
history_id integer NOT NULL,
history_date timestamp with time zone NOT NULL,
history_change_reason character varying(100),
history_type character varying(1) NOT NULL,
employee_objective_id_id bigint,
history_user_id integer,
key_result_id_id bigint
);
ALTER TABLE public.pms_historicalemployeekeyresult OWNER TO erp_user;
--
-- Name: pms_historicalemployeekeyresult_history_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.pms_historicalemployeekeyresult ALTER COLUMN history_id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.pms_historicalemployeekeyresult_history_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: pms_historicalemployeekeyresult_history_tags; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.pms_historicalemployeekeyresult_history_tags (
id bigint NOT NULL,
historicalemployeekeyresult_id integer NOT NULL,
audittag_id bigint NOT NULL
);
ALTER TABLE public.pms_historicalemployeekeyresult_history_tags OWNER TO erp_user;
--
-- Name: pms_historicalemployeekeyresult_history_tags_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.pms_historicalemployeekeyresult_history_tags ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.pms_historicalemployeekeyresult_history_tags_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: pms_historicalemployeeobjective; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.pms_historicalemployeeobjective (
id bigint NOT NULL,
is_active boolean NOT NULL,
history_title character varying(20),
history_description text,
history_highlight boolean,
objective character varying(100),
objective_description text,
created_at date NOT NULL,
updated_at date NOT NULL,
start_date date NOT NULL,
end_date date NOT NULL,
status character varying(20) NOT NULL,
progress_percentage integer NOT NULL,
archive boolean NOT NULL,
history_id integer NOT NULL,
history_date timestamp with time zone NOT NULL,
history_change_reason character varying(100),
history_type character varying(1) NOT NULL,
created_by_id integer,
employee_id_id bigint,
history_relation_id bigint NOT NULL,
history_user_id integer,
modified_by_id integer,
objective_id_id bigint
);
ALTER TABLE public.pms_historicalemployeeobjective OWNER TO erp_user;
--
-- Name: pms_historicalemployeeobjective_history_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.pms_historicalemployeeobjective ALTER COLUMN history_id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.pms_historicalemployeeobjective_history_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: pms_historicalemployeeobjective_history_tags; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.pms_historicalemployeeobjective_history_tags (
id bigint NOT NULL,
historicalemployeeobjective_id integer NOT NULL,
audittag_id bigint NOT NULL
);
ALTER TABLE public.pms_historicalemployeeobjective_history_tags OWNER TO erp_user;
--
-- Name: pms_historicalemployeeobjective_history_tags_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.pms_historicalemployeeobjective_history_tags ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.pms_historicalemployeeobjective_history_tags_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: pms_historicalkeyresult; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.pms_historicalkeyresult (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
history_title character varying(20),
history_description text,
history_highlight boolean,
title character varying(60),
description text NOT NULL,
progress_type character varying(60) NOT NULL,
target_value integer,
duration integer,
archive boolean NOT NULL,
history_id integer NOT NULL,
history_date timestamp with time zone NOT NULL,
history_change_reason character varying(100),
history_type character varying(1) NOT NULL,
company_id_id bigint,
created_by_id integer,
history_user_id integer,
modified_by_id integer
);
ALTER TABLE public.pms_historicalkeyresult OWNER TO erp_user;
--
-- Name: pms_historicalkeyresult_history_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.pms_historicalkeyresult ALTER COLUMN history_id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.pms_historicalkeyresult_history_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: pms_historicalkeyresult_history_tags; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.pms_historicalkeyresult_history_tags (
id bigint NOT NULL,
historicalkeyresult_id integer NOT NULL,
audittag_id bigint NOT NULL
);
ALTER TABLE public.pms_historicalkeyresult_history_tags OWNER TO erp_user;
--
-- Name: pms_historicalkeyresult_history_tags_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.pms_historicalkeyresult_history_tags ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.pms_historicalkeyresult_history_tags_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: pms_historicalobjective; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.pms_historicalobjective (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
history_title character varying(20),
history_description text,
history_highlight boolean,
title character varying(100) NOT NULL,
description text NOT NULL,
duration_unit character varying(20),
duration integer NOT NULL,
add_assignees boolean NOT NULL,
archive boolean NOT NULL,
history_id integer NOT NULL,
history_date timestamp with time zone NOT NULL,
history_change_reason character varying(100),
history_type character varying(1) NOT NULL,
company_id_id bigint,
created_by_id integer,
history_user_id integer,
modified_by_id integer
);
ALTER TABLE public.pms_historicalobjective OWNER TO erp_user;
--
-- Name: pms_historicalobjective_history_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.pms_historicalobjective ALTER COLUMN history_id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.pms_historicalobjective_history_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: pms_historicalobjective_history_tags; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.pms_historicalobjective_history_tags (
id bigint NOT NULL,
historicalobjective_id integer NOT NULL,
audittag_id bigint NOT NULL
);
ALTER TABLE public.pms_historicalobjective_history_tags OWNER TO erp_user;
--
-- Name: pms_historicalobjective_history_tags_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.pms_historicalobjective_history_tags ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.pms_historicalobjective_history_tags_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: pms_keyresult; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.pms_keyresult (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
title character varying(60),
description text NOT NULL,
progress_type character varying(60) NOT NULL,
target_value integer,
duration integer,
archive boolean NOT NULL,
company_id_id bigint,
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.pms_keyresult OWNER TO erp_user;
--
-- Name: pms_keyresult_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.pms_keyresult ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.pms_keyresult_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: pms_keyresultfeedback; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.pms_keyresultfeedback (
id bigint NOT NULL,
answer jsonb,
employee_id_id bigint NOT NULL,
feedback_id_id bigint,
key_result_id_id bigint
);
ALTER TABLE public.pms_keyresultfeedback OWNER TO erp_user;
--
-- Name: pms_keyresultfeedback_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.pms_keyresultfeedback ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.pms_keyresultfeedback_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: pms_meetings; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.pms_meetings (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
title character varying(100) NOT NULL,
date timestamp with time zone,
response text,
show_response boolean NOT NULL,
created_by_id integer,
modified_by_id integer,
question_template_id bigint
);
ALTER TABLE public.pms_meetings OWNER TO erp_user;
--
-- Name: pms_meetings_answer_employees; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.pms_meetings_answer_employees (
id bigint NOT NULL,
meetings_id bigint NOT NULL,
employee_id bigint NOT NULL
);
ALTER TABLE public.pms_meetings_answer_employees OWNER TO erp_user;
--
-- Name: pms_meetings_answer_employees_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.pms_meetings_answer_employees ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.pms_meetings_answer_employees_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: pms_meetings_employee_id; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.pms_meetings_employee_id (
id bigint NOT NULL,
meetings_id bigint NOT NULL,
employee_id bigint NOT NULL
);
ALTER TABLE public.pms_meetings_employee_id OWNER TO erp_user;
--
-- Name: pms_meetings_employee_id_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.pms_meetings_employee_id ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.pms_meetings_employee_id_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: pms_meetings_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.pms_meetings ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.pms_meetings_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: pms_meetings_manager; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.pms_meetings_manager (
id bigint NOT NULL,
meetings_id bigint NOT NULL,
employee_id bigint NOT NULL
);
ALTER TABLE public.pms_meetings_manager OWNER TO erp_user;
--
-- Name: pms_meetings_manager_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.pms_meetings_manager ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.pms_meetings_manager_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: pms_meetingsanswer; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.pms_meetingsanswer (
id bigint NOT NULL,
answer jsonb,
employee_id_id bigint,
meeting_id_id bigint NOT NULL,
question_id_id bigint
);
ALTER TABLE public.pms_meetingsanswer OWNER TO erp_user;
--
-- Name: pms_meetingsanswer_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.pms_meetingsanswer ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.pms_meetingsanswer_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: pms_objective; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.pms_objective (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
title character varying(100) NOT NULL,
description text NOT NULL,
duration_unit character varying(20),
duration integer NOT NULL,
add_assignees boolean NOT NULL,
archive boolean NOT NULL,
company_id_id bigint,
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.pms_objective OWNER TO erp_user;
--
-- Name: pms_objective_assignees; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.pms_objective_assignees (
id bigint NOT NULL,
objective_id bigint NOT NULL,
employee_id bigint NOT NULL
);
ALTER TABLE public.pms_objective_assignees OWNER TO erp_user;
--
-- Name: pms_objective_assignees_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.pms_objective_assignees ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.pms_objective_assignees_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: pms_objective_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.pms_objective ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.pms_objective_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: pms_objective_key_result_id; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.pms_objective_key_result_id (
id bigint NOT NULL,
objective_id bigint NOT NULL,
keyresult_id bigint NOT NULL
);
ALTER TABLE public.pms_objective_key_result_id OWNER TO erp_user;
--
-- Name: pms_objective_key_result_id_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.pms_objective_key_result_id ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.pms_objective_key_result_id_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: pms_objective_managers; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.pms_objective_managers (
id bigint NOT NULL,
objective_id bigint NOT NULL,
employee_id bigint NOT NULL
);
ALTER TABLE public.pms_objective_managers OWNER TO erp_user;
--
-- Name: pms_objective_managers_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.pms_objective_managers ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.pms_objective_managers_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: pms_period; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.pms_period (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
period_name character varying(150) NOT NULL,
start_date date NOT NULL,
end_date date NOT NULL,
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.pms_period OWNER TO erp_user;
--
-- Name: pms_period_company_id; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.pms_period_company_id (
id bigint NOT NULL,
period_id bigint NOT NULL,
company_id bigint NOT NULL
);
ALTER TABLE public.pms_period_company_id OWNER TO erp_user;
--
-- Name: pms_period_company_id_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.pms_period_company_id ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.pms_period_company_id_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: pms_period_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.pms_period ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.pms_period_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: pms_question; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.pms_question (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
question character varying(250) NOT NULL,
question_type character varying(100),
created_by_id integer,
modified_by_id integer,
template_id_id bigint
);
ALTER TABLE public.pms_question OWNER TO erp_user;
--
-- Name: pms_question_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.pms_question ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.pms_question_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: pms_questionoptions; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.pms_questionoptions (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
option_a character varying(250),
option_b character varying(250),
option_c character varying(250),
option_d character varying(250),
created_by_id integer,
modified_by_id integer,
question_id_id bigint
);
ALTER TABLE public.pms_questionoptions OWNER TO erp_user;
--
-- Name: pms_questionoptions_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.pms_questionoptions ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.pms_questionoptions_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: pms_questiontemplate; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.pms_questiontemplate (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
question_template character varying(100) NOT NULL,
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.pms_questiontemplate OWNER TO erp_user;
--
-- Name: pms_questiontemplate_company_id; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.pms_questiontemplate_company_id (
id bigint NOT NULL,
questiontemplate_id bigint NOT NULL,
company_id bigint NOT NULL
);
ALTER TABLE public.pms_questiontemplate_company_id OWNER TO erp_user;
--
-- Name: pms_questiontemplate_company_id_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.pms_questiontemplate_company_id ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.pms_questiontemplate_company_id_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: pms_questiontemplate_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.pms_questiontemplate ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.pms_questiontemplate_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: recruitment_candidate; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.recruitment_candidate (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
name character varying(100),
profile character varying(100),
portfolio character varying(200) NOT NULL,
schedule_date timestamp with time zone,
email character varying(254) NOT NULL,
mobile character varying(15) NOT NULL,
resume character varying(100) NOT NULL,
address text,
country character varying(30),
dob date,
state character varying(30),
city character varying(30),
zip character varying(30),
gender character varying(15),
source character varying(20),
start_onboard boolean NOT NULL,
hired boolean NOT NULL,
canceled boolean NOT NULL,
converted boolean NOT NULL,
joining_date date,
sequence integer,
probation_end date,
offer_letter_status character varying(10) NOT NULL,
last_updated date,
converted_employee_id_id bigint,
created_by_id integer,
job_position_id_id bigint,
modified_by_id integer,
recruitment_id_id bigint,
referral_id bigint,
stage_id_id bigint
);
ALTER TABLE public.recruitment_candidate OWNER TO erp_user;
--
-- Name: recruitment_candidate_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.recruitment_candidate ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.recruitment_candidate_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: recruitment_candidatedocument; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.recruitment_candidatedocument (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
title character varying(250) NOT NULL,
document character varying(100),
status character varying(10) NOT NULL,
reject_reason text,
candidate_id_id bigint NOT NULL,
created_by_id integer,
document_request_id_id bigint,
modified_by_id integer
);
ALTER TABLE public.recruitment_candidatedocument OWNER TO erp_user;
--
-- Name: recruitment_candidatedocument_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.recruitment_candidatedocument ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.recruitment_candidatedocument_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: recruitment_candidatedocumentrequest; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.recruitment_candidatedocumentrequest (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
title character varying(100) NOT NULL,
format character varying(10) NOT NULL,
max_size integer,
description text,
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.recruitment_candidatedocumentrequest OWNER TO erp_user;
--
-- Name: recruitment_candidatedocumentrequest_candidate_id; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.recruitment_candidatedocumentrequest_candidate_id (
id bigint NOT NULL,
candidatedocumentrequest_id bigint NOT NULL,
candidate_id bigint NOT NULL
);
ALTER TABLE public.recruitment_candidatedocumentrequest_candidate_id OWNER TO erp_user;
--
-- Name: recruitment_candidatedocumentrequest_candidate_id_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.recruitment_candidatedocumentrequest_candidate_id ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.recruitment_candidatedocumentrequest_candidate_id_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: recruitment_candidatedocumentrequest_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.recruitment_candidatedocumentrequest ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.recruitment_candidatedocumentrequest_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: recruitment_candidaterating; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.recruitment_candidaterating (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
rating integer NOT NULL,
candidate_id_id bigint NOT NULL,
created_by_id integer,
employee_id_id bigint NOT NULL,
modified_by_id integer
);
ALTER TABLE public.recruitment_candidaterating OWNER TO erp_user;
--
-- Name: recruitment_candidaterating_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.recruitment_candidaterating ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.recruitment_candidaterating_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: recruitment_historicalcandidate; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.recruitment_historicalcandidate (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
history_title character varying(20),
history_description text,
history_highlight boolean,
name character varying(100),
profile text,
portfolio character varying(200) NOT NULL,
schedule_date timestamp with time zone,
email character varying(254) NOT NULL,
mobile character varying(15) NOT NULL,
resume text NOT NULL,
address text,
country character varying(30),
dob date,
state character varying(30),
city character varying(30),
zip character varying(30),
gender character varying(15),
source character varying(20),
start_onboard boolean NOT NULL,
hired boolean NOT NULL,
canceled boolean NOT NULL,
converted boolean NOT NULL,
joining_date date,
sequence integer,
probation_end date,
offer_letter_status character varying(10) NOT NULL,
last_updated date,
history_id integer NOT NULL,
history_date timestamp with time zone NOT NULL,
history_change_reason character varying(100),
history_type character varying(1) NOT NULL,
converted_employee_id_id bigint,
created_by_id integer,
history_relation_id bigint NOT NULL,
history_user_id integer,
job_position_id_id bigint,
modified_by_id integer,
recruitment_id_id bigint,
referral_id bigint,
stage_id_id bigint
);
ALTER TABLE public.recruitment_historicalcandidate OWNER TO erp_user;
--
-- Name: recruitment_historicalcandidate_history_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.recruitment_historicalcandidate ALTER COLUMN history_id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.recruitment_historicalcandidate_history_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: recruitment_historicalcandidate_history_tags; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.recruitment_historicalcandidate_history_tags (
id bigint NOT NULL,
historicalcandidate_id integer NOT NULL,
audittag_id bigint NOT NULL
);
ALTER TABLE public.recruitment_historicalcandidate_history_tags OWNER TO erp_user;
--
-- Name: recruitment_historicalcandidate_history_tags_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.recruitment_historicalcandidate_history_tags ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.recruitment_historicalcandidate_history_tags_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: recruitment_historicalrejectedcandidate; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.recruitment_historicalrejectedcandidate (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
history_title character varying(20),
history_description text,
history_highlight boolean,
description text NOT NULL,
history_id integer NOT NULL,
history_date timestamp with time zone NOT NULL,
history_change_reason character varying(100),
history_type character varying(1) NOT NULL,
candidate_id_id bigint,
created_by_id integer,
history_relation_id bigint NOT NULL,
history_user_id integer,
modified_by_id integer
);
ALTER TABLE public.recruitment_historicalrejectedcandidate OWNER TO erp_user;
--
-- Name: recruitment_historicalrejectedcandidate_history_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.recruitment_historicalrejectedcandidate ALTER COLUMN history_id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.recruitment_historicalrejectedcandidate_history_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: recruitment_historicalrejectedcandidate_history_tags; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.recruitment_historicalrejectedcandidate_history_tags (
id bigint NOT NULL,
historicalrejectedcandidate_id integer NOT NULL,
audittag_id bigint NOT NULL
);
ALTER TABLE public.recruitment_historicalrejectedcandidate_history_tags OWNER TO erp_user;
--
-- Name: recruitment_historicalrejectedcandidate_history_tags_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.recruitment_historicalrejectedcandidate_history_tags ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.recruitment_historicalrejectedcandidate_history_tags_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: recruitment_interviewschedule; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.recruitment_interviewschedule (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
interview_date date NOT NULL,
interview_time time without time zone NOT NULL,
description text NOT NULL,
completed boolean NOT NULL,
candidate_id_id bigint NOT NULL,
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.recruitment_interviewschedule OWNER TO erp_user;
--
-- Name: recruitment_interviewschedule_employee_id; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.recruitment_interviewschedule_employee_id (
id bigint NOT NULL,
interviewschedule_id bigint NOT NULL,
employee_id bigint NOT NULL
);
ALTER TABLE public.recruitment_interviewschedule_employee_id OWNER TO erp_user;
--
-- Name: recruitment_interviewschedule_employee_id_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.recruitment_interviewschedule_employee_id ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.recruitment_interviewschedule_employee_id_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: recruitment_interviewschedule_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.recruitment_interviewschedule ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.recruitment_interviewschedule_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: recruitment_questionordering; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.recruitment_questionordering (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
sequence integer NOT NULL,
created_by_id integer,
modified_by_id integer,
question_id_id bigint NOT NULL,
recruitment_id_id bigint NOT NULL
);
ALTER TABLE public.recruitment_questionordering OWNER TO erp_user;
--
-- Name: recruitment_questionordering_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.recruitment_questionordering ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.recruitment_questionordering_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: recruitment_recruitment; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.recruitment_recruitment (
id bigint NOT NULL,
created_at timestamp with time zone,
title character varying(30),
description text,
is_event_based boolean NOT NULL,
closed boolean NOT NULL,
is_published boolean NOT NULL,
is_active boolean NOT NULL,
vacancy integer,
start_date date NOT NULL,
end_date date,
optional_profile_image boolean NOT NULL,
optional_resume boolean NOT NULL,
company_id_id bigint,
created_by_id integer,
job_position_id_id bigint,
modified_by_id integer
);
ALTER TABLE public.recruitment_recruitment OWNER TO erp_user;
--
-- Name: recruitment_recruitment_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.recruitment_recruitment ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.recruitment_recruitment_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: recruitment_recruitment_open_positions; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.recruitment_recruitment_open_positions (
id bigint NOT NULL,
recruitment_id bigint NOT NULL,
jobposition_id bigint NOT NULL
);
ALTER TABLE public.recruitment_recruitment_open_positions OWNER TO erp_user;
--
-- Name: recruitment_recruitment_open_positions_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.recruitment_recruitment_open_positions ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.recruitment_recruitment_open_positions_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: recruitment_recruitment_recruitment_managers; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.recruitment_recruitment_recruitment_managers (
id bigint NOT NULL,
recruitment_id bigint NOT NULL,
employee_id bigint NOT NULL
);
ALTER TABLE public.recruitment_recruitment_recruitment_managers OWNER TO erp_user;
--
-- Name: recruitment_recruitment_recruitment_managers_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.recruitment_recruitment_recruitment_managers ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.recruitment_recruitment_recruitment_managers_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: recruitment_recruitment_skills; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.recruitment_recruitment_skills (
id bigint NOT NULL,
recruitment_id bigint NOT NULL,
skill_id bigint NOT NULL
);
ALTER TABLE public.recruitment_recruitment_skills OWNER TO erp_user;
--
-- Name: recruitment_recruitment_skills_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.recruitment_recruitment_skills ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.recruitment_recruitment_skills_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: recruitment_recruitment_survey_templates; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.recruitment_recruitment_survey_templates (
id bigint NOT NULL,
recruitment_id bigint NOT NULL,
surveytemplate_id bigint NOT NULL
);
ALTER TABLE public.recruitment_recruitment_survey_templates OWNER TO erp_user;
--
-- Name: recruitment_recruitment_survey_templates_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.recruitment_recruitment_survey_templates ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.recruitment_recruitment_survey_templates_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: recruitment_recruitmentgeneralsetting; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.recruitment_recruitmentgeneralsetting (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
candidate_self_tracking boolean NOT NULL,
show_overall_rating boolean NOT NULL,
company_id_id bigint,
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.recruitment_recruitmentgeneralsetting OWNER TO erp_user;
--
-- Name: recruitment_recruitmentgeneralsetting_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.recruitment_recruitmentgeneralsetting ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.recruitment_recruitmentgeneralsetting_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: recruitment_recruitmentmailtemplate; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.recruitment_recruitmentmailtemplate (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
title character varying(25) NOT NULL,
body text NOT NULL,
company_id_id bigint,
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.recruitment_recruitmentmailtemplate OWNER TO erp_user;
--
-- Name: recruitment_recruitmentmailtemplate_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.recruitment_recruitmentmailtemplate ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.recruitment_recruitmentmailtemplate_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: recruitment_recruitmentsurvey; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.recruitment_recruitmentsurvey (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
is_mandatory boolean NOT NULL,
question text NOT NULL,
sequence integer,
type character varying(15) NOT NULL,
options text,
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.recruitment_recruitmentsurvey OWNER TO erp_user;
--
-- Name: recruitment_recruitmentsurvey_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.recruitment_recruitmentsurvey ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.recruitment_recruitmentsurvey_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: recruitment_recruitmentsurvey_job_position_ids; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.recruitment_recruitmentsurvey_job_position_ids (
id bigint NOT NULL,
recruitmentsurvey_id bigint NOT NULL,
jobposition_id bigint NOT NULL
);
ALTER TABLE public.recruitment_recruitmentsurvey_job_position_ids OWNER TO erp_user;
--
-- Name: recruitment_recruitmentsurvey_job_position_ids_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.recruitment_recruitmentsurvey_job_position_ids ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.recruitment_recruitmentsurvey_job_position_ids_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: recruitment_recruitmentsurvey_recruitment_ids; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.recruitment_recruitmentsurvey_recruitment_ids (
id bigint NOT NULL,
recruitmentsurvey_id bigint NOT NULL,
recruitment_id bigint NOT NULL
);
ALTER TABLE public.recruitment_recruitmentsurvey_recruitment_ids OWNER TO erp_user;
--
-- Name: recruitment_recruitmentsurvey_recruitment_ids_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.recruitment_recruitmentsurvey_recruitment_ids ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.recruitment_recruitmentsurvey_recruitment_ids_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: recruitment_recruitmentsurvey_template_id; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.recruitment_recruitmentsurvey_template_id (
id bigint NOT NULL,
recruitmentsurvey_id bigint NOT NULL,
surveytemplate_id bigint NOT NULL
);
ALTER TABLE public.recruitment_recruitmentsurvey_template_id OWNER TO erp_user;
--
-- Name: recruitment_recruitmentsurvey_template_id_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.recruitment_recruitmentsurvey_template_id ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.recruitment_recruitmentsurvey_template_id_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: recruitment_recruitmentsurveyanswer; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.recruitment_recruitmentsurveyanswer (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
answer_json jsonb NOT NULL,
attachment character varying(100),
candidate_id_id bigint NOT NULL,
created_by_id integer,
job_position_id_id bigint,
modified_by_id integer,
recruitment_id_id bigint
);
ALTER TABLE public.recruitment_recruitmentsurveyanswer OWNER TO erp_user;
--
-- Name: recruitment_recruitmentsurveyanswer_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.recruitment_recruitmentsurveyanswer ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.recruitment_recruitmentsurveyanswer_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: recruitment_rejectedcandidate; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.recruitment_rejectedcandidate (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
description text NOT NULL,
candidate_id_id bigint NOT NULL,
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.recruitment_rejectedcandidate OWNER TO erp_user;
--
-- Name: recruitment_rejectedcandidate_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.recruitment_rejectedcandidate ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.recruitment_rejectedcandidate_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: recruitment_rejectedcandidate_reject_reason_id; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.recruitment_rejectedcandidate_reject_reason_id (
id bigint NOT NULL,
rejectedcandidate_id bigint NOT NULL,
rejectreason_id bigint NOT NULL
);
ALTER TABLE public.recruitment_rejectedcandidate_reject_reason_id OWNER TO erp_user;
--
-- Name: recruitment_rejectedcandidate_reject_reason_id_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.recruitment_rejectedcandidate_reject_reason_id ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.recruitment_rejectedcandidate_reject_reason_id_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: recruitment_rejectreason; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.recruitment_rejectreason (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
title character varying(20) NOT NULL,
description text,
company_id_id bigint,
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.recruitment_rejectreason OWNER TO erp_user;
--
-- Name: recruitment_rejectreason_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.recruitment_rejectreason ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.recruitment_rejectreason_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: recruitment_resume; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.recruitment_resume (
id bigint NOT NULL,
file character varying(100) NOT NULL,
is_candidate boolean NOT NULL,
recruitment_id_id bigint NOT NULL
);
ALTER TABLE public.recruitment_resume OWNER TO erp_user;
--
-- Name: recruitment_resume_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.recruitment_resume ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.recruitment_resume_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: recruitment_skill; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.recruitment_skill (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
title character varying(100) NOT NULL,
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.recruitment_skill OWNER TO erp_user;
--
-- Name: recruitment_skill_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.recruitment_skill ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.recruitment_skill_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: recruitment_skillzone; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.recruitment_skillzone (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
title character varying(50) NOT NULL,
description text NOT NULL,
company_id_id bigint,
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.recruitment_skillzone OWNER TO erp_user;
--
-- Name: recruitment_skillzone_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.recruitment_skillzone ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.recruitment_skillzone_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: recruitment_skillzonecandidate; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.recruitment_skillzonecandidate (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
reason character varying(200) NOT NULL,
added_on date NOT NULL,
candidate_id_id bigint,
created_by_id integer,
modified_by_id integer,
skill_zone_id_id bigint
);
ALTER TABLE public.recruitment_skillzonecandidate OWNER TO erp_user;
--
-- Name: recruitment_skillzonecandidate_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.recruitment_skillzonecandidate ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.recruitment_skillzonecandidate_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: recruitment_stage; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.recruitment_stage (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
stage character varying(50) NOT NULL,
stage_type character varying(20) NOT NULL,
sequence integer,
created_by_id integer,
modified_by_id integer,
recruitment_id_id bigint NOT NULL
);
ALTER TABLE public.recruitment_stage OWNER TO erp_user;
--
-- Name: recruitment_stage_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.recruitment_stage ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.recruitment_stage_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: recruitment_stage_stage_managers; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.recruitment_stage_stage_managers (
id bigint NOT NULL,
stage_id bigint NOT NULL,
employee_id bigint NOT NULL
);
ALTER TABLE public.recruitment_stage_stage_managers OWNER TO erp_user;
--
-- Name: recruitment_stage_stage_managers_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.recruitment_stage_stage_managers ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.recruitment_stage_stage_managers_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: recruitment_stagefiles; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.recruitment_stagefiles (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
files character varying(100),
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.recruitment_stagefiles OWNER TO erp_user;
--
-- Name: recruitment_stagefiles_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.recruitment_stagefiles ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.recruitment_stagefiles_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: recruitment_stagenote; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.recruitment_stagenote (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
description text NOT NULL,
candidate_can_view boolean NOT NULL,
candidate_id_id bigint NOT NULL,
created_by_id integer,
modified_by_id integer,
stage_id_id bigint NOT NULL,
updated_by_id bigint
);
ALTER TABLE public.recruitment_stagenote OWNER TO erp_user;
--
-- Name: recruitment_stagenote_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.recruitment_stagenote ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.recruitment_stagenote_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: recruitment_stagenote_stage_files; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.recruitment_stagenote_stage_files (
id bigint NOT NULL,
stagenote_id bigint NOT NULL,
stagefiles_id bigint NOT NULL
);
ALTER TABLE public.recruitment_stagenote_stage_files OWNER TO erp_user;
--
-- Name: recruitment_stagenote_stage_files_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.recruitment_stagenote_stage_files ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.recruitment_stagenote_stage_files_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Name: recruitment_surveytemplate; Type: TABLE; Schema: public; Owner: erp_user
--
CREATE TABLE public.recruitment_surveytemplate (
id bigint NOT NULL,
created_at timestamp with time zone,
is_active boolean NOT NULL,
title character varying(30) NOT NULL,
description text,
is_general_template boolean NOT NULL,
company_id_id bigint,
created_by_id integer,
modified_by_id integer
);
ALTER TABLE public.recruitment_surveytemplate OWNER TO erp_user;
--
-- Name: recruitment_surveytemplate_id_seq; Type: SEQUENCE; Schema: public; Owner: erp_user
--
ALTER TABLE public.recruitment_surveytemplate ALTER COLUMN id ADD GENERATED BY DEFAULT AS IDENTITY (
SEQUENCE NAME public.recruitment_surveytemplate_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1
);
--
-- Data for Name: accessibility_defaultaccessibility; Type: TABLE DATA; Schema: public; Owner: erp_user
--
COPY public.accessibility_defaultaccessibility (id, created_at, is_active, feature, filter, exclude_all, created_by_id, modified_by_id) FROM stdin;
7 2025-02-03 09:57:04.243246+00 t employee_view {"feature": ["employee_view"], "exclude_all": ["on"]} t 273 273
8 2025-02-03 09:57:07.501134+00 t employee_detailed_view {"feature": ["employee_detailed_view"], "exclude_all": ["on"]} t 273 273
9 2025-02-03 09:57:12.082589+00 t profile_edit {"feature": ["profile_edit"], "exclude_all": ["on"]} t 273 273
10 2025-02-03 09:57:15.299765+00 t gender_chart {"feature": ["gender_chart"], "exclude_all": ["on"]} t 273 273
11 2025-02-03 09:57:18.895217+00 t department_chart {"feature": ["department_chart"], "exclude_all": ["on"]} t 273 273
12 2025-02-03 09:57:22.7127+00 t employees_chart {"feature": ["employees_chart"], "exclude_all": ["on"]} t 273 273
\.
--
-- Data for Name: accessibility_defaultaccessibility_employees; Type: TABLE DATA; Schema: public; Owner: erp_user
--
COPY public.accessibility_defaultaccessibility_employees (id, defaultaccessibility_id, employee_id) FROM stdin;
55 7 36
56 7 37
57 7 38
58 7 39
59 7 40
60 7 41
61 7 42
62 7 43
63 7 44
64 7 45
65 7 46
66 7 47
67 7 48
68 7 49
69 7 50
70 7 51
71 7 52
72 7 53
73 7 54
74 7 55
75 7 56
76 7 57
77 7 58
78 7 59
79 7 60
80 7 61
81 7 62
82 7 63
83 7 64
84 7 65
85 7 66
86 7 67
87 7 68
88 7 69
89 7 70
90 7 71
91 7 72
92 7 73
93 7 74
94 7 75
95 7 76
96 7 77
97 7 78
98 7 79
99 7 80
100 7 81
101 7 82
102 7 83
103 7 84
104 7 85
105 7 86
106 7 87
107 7 88
108 7 89
109 7 90
110 7 91
111 7 92
112 7 93
113 7 94
114 7 95
115 7 96
116 7 97
117 7 98
118 7 99
119 7 100
120 7 101
121 7 102
122 7 103
123 7 104
124 7 105
125 7 106
126 7 107
127 7 108
128 7 109
129 7 110
130 7 111
131 7 112
132 7 113
133 7 114
134 7 115
135 7 116
136 7 117
137 7 118
138 7 119
139 7 120
140 7 121
141 7 122
142 7 123
143 7 124
144 7 125
145 7 126
146 7 127
147 7 128
148 7 129
149 7 130
150 7 131
151 7 132
152 7 133
153 7 134
154 7 135
155 7 136
156 7 137
157 7 138
158 7 139
159 7 140
160 7 141
161 7 142
162 7 143
163 7 144
164 7 145
165 7 146
166 7 147
167 7 148
168 7 149
169 7 150
170 7 151
171 7 152
172 7 153
173 7 154
174 7 155
175 7 156
176 7 157
177 7 158
178 7 159
179 7 160
180 7 161
181 7 162
182 7 163
183 7 164
184 7 165
185 7 166
186 7 167
187 7 168
188 7 169
189 7 170
190 7 171
191 7 172
192 7 173
193 7 174
194 7 175
195 7 176
196 7 177
197 7 178
198 7 179
199 7 180
200 7 181
201 7 182
202 7 183
203 7 184
204 7 185
205 7 186
206 7 187
207 7 188
208 7 189
209 7 190
210 7 191
211 7 192
212 7 193
213 7 194
214 7 195
215 7 196
216 7 197
217 7 198
218 7 199
219 7 200
220 7 201
221 7 202
222 7 203
223 7 204
224 7 205
225 7 206
226 7 207
227 7 208
228 7 209
229 7 210
230 7 211
231 7 212
232 7 213
233 7 214
234 7 215
235 7 216
236 7 217
237 7 218
238 7 219
239 7 220
240 7 221
241 7 222
242 7 223
243 7 224
244 7 225
245 7 226
246 7 227
247 7 228
248 7 229
249 7 230
250 7 231
251 7 232
252 7 233
253 7 234
254 7 235
255 7 236
256 7 237
257 7 238
258 7 239
259 7 240
260 7 241
261 7 242
262 7 243
263 7 244
264 7 245
265 7 246
266 7 247
267 7 248
268 7 249
269 7 250
270 7 251
271 7 252
272 7 253
273 7 254
274 7 255
275 7 256
276 7 257
277 7 258
278 7 259
279 7 260
280 7 261
281 7 262
282 7 263
283 7 264
284 7 265
285 7 266
286 7 267
287 7 268
288 7 269
289 7 270
290 7 271
291 7 272
292 7 273
293 7 274
294 7 275
295 7 276
296 7 277
297 7 278
298 7 279
299 7 280
300 7 281
301 7 282
302 7 283
303 7 284
304 7 285
305 7 286
306 7 287
307 7 288
308 7 289
309 7 290
310 7 291
311 7 292
312 7 293
313 7 294
314 7 295
315 7 296
316 7 297
317 7 298
318 8 36
319 8 37
320 8 38
321 8 39
322 8 40
323 8 41
324 8 42
325 8 43
326 8 44
327 8 45
328 8 46
329 8 47
330 8 48
331 8 49
332 8 50
333 8 51
334 8 52
335 8 53
336 8 54
337 8 55
338 8 56
339 8 57
340 8 58
341 8 59
342 8 60
343 8 61
344 8 62
345 8 63
346 8 64
347 8 65
348 8 66
349 8 67
350 8 68
351 8 69
352 8 70
353 8 71
354 8 72
355 8 73
356 8 74
357 8 75
358 8 76
359 8 77
360 8 78
361 8 79
362 8 80
363 8 81
364 8 82
365 8 83
366 8 84
367 8 85
368 8 86
369 8 87
370 8 88
371 8 89
372 8 90
373 8 91
374 8 92
375 8 93
376 8 94
377 8 95
378 8 96
379 8 97
380 8 98
381 8 99
382 8 100
383 8 101
384 8 102
385 8 103
386 8 104
387 8 105
388 8 106
389 8 107
390 8 108
391 8 109
392 8 110
393 8 111
394 8 112
395 8 113
396 8 114
397 8 115
398 8 116
399 8 117
400 8 118
401 8 119
402 8 120
403 8 121
404 8 122
405 8 123
406 8 124
407 8 125
408 8 126
409 8 127
410 8 128
411 8 129
412 8 130
413 8 131
414 8 132
415 8 133
416 8 134
417 8 135
418 8 136
419 8 137
420 8 138
421 8 139
422 8 140
423 8 141
424 8 142
425 8 143
426 8 144
427 8 145
428 8 146
429 8 147
430 8 148
431 8 149
432 8 150
433 8 151
434 8 152
435 8 153
436 8 154
437 8 155
438 8 156
439 8 157
440 8 158
441 8 159
442 8 160
443 8 161
444 8 162
445 8 163
446 8 164
447 8 165
448 8 166
449 8 167
450 8 168
451 8 169
452 8 170
453 8 171
454 8 172
455 8 173
456 8 174
457 8 175
458 8 176
459 8 177
460 8 178
461 8 179
462 8 180
463 8 181
464 8 182
465 8 183
466 8 184
467 8 185
468 8 186
469 8 187
470 8 188
471 8 189
472 8 190
473 8 191
474 8 192
475 8 193
476 8 194
477 8 195
478 8 196
479 8 197
480 8 198
481 8 199
482 8 200
483 8 201
484 8 202
485 8 203
486 8 204
487 8 205
488 8 206
489 8 207
490 8 208
491 8 209
492 8 210
493 8 211
494 8 212
495 8 213
496 8 214
497 8 215
498 8 216
499 8 217
500 8 218
501 8 219
502 8 220
503 8 221
504 8 222
505 8 223
506 8 224
507 8 225
508 8 226
509 8 227
510 8 228
511 8 229
512 8 230
513 8 231
514 8 232
515 8 233
516 8 234
517 8 235
518 8 236
519 8 237
520 8 238
521 8 239
522 8 240
523 8 241
524 8 242
525 8 243
526 8 244
527 8 245
528 8 246
529 8 247
530 8 248
531 8 249
532 8 250
533 8 251
534 8 252
535 8 253
536 8 254
537 8 255
538 8 256
539 8 257
540 8 258
541 8 259
542 8 260
543 8 261
544 8 262
545 8 263
546 8 264
547 8 265
548 8 266
549 8 267
550 8 268
551 8 269
552 8 270
553 8 271
554 8 272
555 8 273
556 8 274
557 8 275
558 8 276
559 8 277
560 8 278
561 8 279
562 8 280
563 8 281
564 8 282
565 8 283
566 8 284
567 8 285
568 8 286
569 8 287
570 8 288
571 8 289
572 8 290
573 8 291
574 8 292
575 8 293
576 8 294
577 8 295
578 8 296
579 8 297
580 8 298
581 9 36
582 9 37
583 9 38
584 9 39
585 9 40
586 9 41
587 9 42
588 9 43
589 9 44
590 9 45
591 9 46
592 9 47
593 9 48
594 9 49
595 9 50
596 9 51
597 9 52
598 9 53
599 9 54
600 9 55
601 9 56
602 9 57
603 9 58
604 9 59
605 9 60
606 9 61
607 9 62
608 9 63
609 9 64
610 9 65
611 9 66
612 9 67
613 9 68
614 9 69
615 9 70
616 9 71
617 9 72
618 9 73
619 9 74
620 9 75
621 9 76
622 9 77
623 9 78
624 9 79
625 9 80
626 9 81
627 9 82
628 9 83
629 9 84
630 9 85
631 9 86
632 9 87
633 9 88
634 9 89
635 9 90
636 9 91
637 9 92
638 9 93
639 9 94
640 9 95
641 9 96
642 9 97
643 9 98
644 9 99
645 9 100
646 9 101
647 9 102
648 9 103
649 9 104
650 9 105
651 9 106
652 9 107
653 9 108
654 9 109
655 9 110
656 9 111
657 9 112
658 9 113
659 9 114
660 9 115
661 9 116
662 9 117
663 9 118
664 9 119
665 9 120
666 9 121
667 9 122
668 9 123
669 9 124
670 9 125
671 9 126
672 9 127
673 9 128
674 9 129
675 9 130
676 9 131
677 9 132
678 9 133
679 9 134
680 9 135
681 9 136
682 9 137
683 9 138
684 9 139
685 9 140
686 9 141
687 9 142
688 9 143
689 9 144
690 9 145
691 9 146
692 9 147
693 9 148
694 9 149
695 9 150
696 9 151
697 9 152
698 9 153
699 9 154
700 9 155
701 9 156
702 9 157
703 9 158
704 9 159
705 9 160
706 9 161
707 9 162
708 9 163
709 9 164
710 9 165
711 9 166
712 9 167
713 9 168
714 9 169
715 9 170
716 9 171
717 9 172
718 9 173
719 9 174
720 9 175
721 9 176
722 9 177
723 9 178
724 9 179
725 9 180
726 9 181
727 9 182
728 9 183
729 9 184
730 9 185
731 9 186
732 9 187
733 9 188
734 9 189
735 9 190
736 9 191
737 9 192
738 9 193
739 9 194
740 9 195
741 9 196
742 9 197
743 9 198
744 9 199
745 9 200
746 9 201
747 9 202
748 9 203
749 9 204
750 9 205
751 9 206
752 9 207
753 9 208
754 9 209
755 9 210
756 9 211
757 9 212
758 9 213
759 9 214
760 9 215
761 9 216
762 9 217
763 9 218
764 9 219
765 9 220
766 9 221
767 9 222
768 9 223
769 9 224
770 9 225
771 9 226
772 9 227
773 9 228
774 9 229
775 9 230
776 9 231
777 9 232
778 9 233
779 9 234
780 9 235
781 9 236
782 9 237
783 9 238
784 9 239
785 9 240
786 9 241
787 9 242
788 9 243
789 9 244
790 9 245
791 9 246
792 9 247
793 9 248
794 9 249
795 9 250
796 9 251
797 9 252
798 9 253
799 9 254
800 9 255
801 9 256
802 9 257
803 9 258
804 9 259
805 9 260
806 9 261
807 9 262
808 9 263
809 9 264
810 9 265
811 9 266
812 9 267
813 9 268
814 9 269
815 9 270
816 9 271
817 9 272
818 9 273
819 9 274
820 9 275
821 9 276
822 9 277
823 9 278
824 9 279
825 9 280
826 9 281
827 9 282
828 9 283
829 9 284
830 9 285
831 9 286
832 9 287
833 9 288
834 9 289
835 9 290
836 9 291
837 9 292
838 9 293
839 9 294
840 9 295
841 9 296
842 9 297
843 9 298
844 10 36
845 10 37
846 10 38
847 10 39
848 10 40
849 10 41
850 10 42
851 10 43
852 10 44
853 10 45
854 10 46
855 10 47
856 10 48
857 10 49
858 10 50
859 10 51
860 10 52
861 10 53
862 10 54
863 10 55
864 10 56
865 10 57
866 10 58
867 10 59
868 10 60
869 10 61
870 10 62
871 10 63
872 10 64
873 10 65
874 10 66
875 10 67
876 10 68
877 10 69
878 10 70
879 10 71
880 10 72
881 10 73
882 10 74
883 10 75
884 10 76
885 10 77
886 10 78
887 10 79
888 10 80
889 10 81
890 10 82
891 10 83
892 10 84
893 10 85
894 10 86
895 10 87
896 10 88
897 10 89
898 10 90
899 10 91
900 10 92
901 10 93
902 10 94
903 10 95
904 10 96
905 10 97
906 10 98
907 10 99
908 10 100
909 10 101
910 10 102
911 10 103
912 10 104
913 10 105
914 10 106
915 10 107
916 10 108
917 10 109
918 10 110
919 10 111
920 10 112
921 10 113
922 10 114
923 10 115
924 10 116
925 10 117
926 10 118
927 10 119
928 10 120
929 10 121
930 10 122
931 10 123
932 10 124
933 10 125
934 10 126
935 10 127
936 10 128
937 10 129
938 10 130
939 10 131
940 10 132
941 10 133
942 10 134
943 10 135
944 10 136
945 10 137
946 10 138
947 10 139
948 10 140
949 10 141
950 10 142
951 10 143
952 10 144
953 10 145
954 10 146
955 10 147
956 10 148
957 10 149
958 10 150
959 10 151
960 10 152
961 10 153
962 10 154
963 10 155
964 10 156
965 10 157
966 10 158
967 10 159
968 10 160
969 10 161
970 10 162
971 10 163
972 10 164
973 10 165
974 10 166
975 10 167
976 10 168
977 10 169
978 10 170
979 10 171
980 10 172
981 10 173
982 10 174
983 10 175
984 10 176
985 10 177
986 10 178
987 10 179
988 10 180
989 10 181
990 10 182
991 10 183
992 10 184
993 10 185
994 10 186
995 10 187
996 10 188
997 10 189
998 10 190
999 10 191
1000 10 192
1001 10 193
1002 10 194
1003 10 195
1004 10 196
1005 10 197
1006 10 198
1007 10 199
1008 10 200
1009 10 201
1010 10 202
1011 10 203
1012 10 204
1013 10 205
1014 10 206
1015 10 207
1016 10 208
1017 10 209
1018 10 210
1019 10 211
1020 10 212
1021 10 213
1022 10 214
1023 10 215
1024 10 216
1025 10 217
1026 10 218
1027 10 219
1028 10 220
1029 10 221
1030 10 222
1031 10 223
1032 10 224
1033 10 225
1034 10 226
1035 10 227
1036 10 228
1037 10 229
1038 10 230
1039 10 231
1040 10 232
1041 10 233
1042 10 234
1043 10 235
1044 10 236
1045 10 237
1046 10 238
1047 10 239
1048 10 240
1049 10 241
1050 10 242
1051 10 243
1052 10 244
1053 10 245
1054 10 246
1055 10 247
1056 10 248
1057 10 249
1058 10 250
1059 10 251
1060 10 252
1061 10 253
1062 10 254
1063 10 255
1064 10 256
1065 10 257
1066 10 258
1067 10 259
1068 10 260
1069 10 261
1070 10 262
1071 10 263
1072 10 264
1073 10 265
1074 10 266
1075 10 267
1076 10 268
1077 10 269
1078 10 270
1079 10 271
1080 10 272
1081 10 273
1082 10 274
1083 10 275
1084 10 276
1085 10 277
1086 10 278
1087 10 279
1088 10 280
1089 10 281
1090 10 282
1091 10 283
1092 10 284
1093 10 285
1094 10 286
1095 10 287
1096 10 288
1097 10 289
1098 10 290
1099 10 291
1100 10 292
1101 10 293
1102 10 294
1103 10 295
1104 10 296
1105 10 297
1106 10 298
1107 11 36
1108 11 37
1109 11 38
1110 11 39
1111 11 40
1112 11 41
1113 11 42
1114 11 43
1115 11 44
1116 11 45
1117 11 46
1118 11 47
1119 11 48
1120 11 49
1121 11 50
1122 11 51
1123 11 52
1124 11 53
1125 11 54
1126 11 55
1127 11 56
1128 11 57
1129 11 58
1130 11 59
1131 11 60
1132 11 61
1133 11 62
1134 11 63
1135 11 64
1136 11 65
1137 11 66
1138 11 67
1139 11 68
1140 11 69
1141 11 70
1142 11 71
1143 11 72
1144 11 73
1145 11 74
1146 11 75
1147 11 76
1148 11 77
1149 11 78
1150 11 79
1151 11 80
1152 11 81
1153 11 82
1154 11 83
1155 11 84
1156 11 85
1157 11 86
1158 11 87
1159 11 88
1160 11 89
1161 11 90
1162 11 91
1163 11 92
1164 11 93
1165 11 94
1166 11 95
1167 11 96
1168 11 97
1169 11 98
1170 11 99
1171 11 100
1172 11 101
1173 11 102
1174 11 103
1175 11 104
1176 11 105
1177 11 106
1178 11 107
1179 11 108
1180 11 109
1181 11 110
1182 11 111
1183 11 112
1184 11 113
1185 11 114
1186 11 115
1187 11 116
1188 11 117
1189 11 118
1190 11 119
1191 11 120
1192 11 121
1193 11 122
1194 11 123
1195 11 124
1196 11 125
1197 11 126
1198 11 127
1199 11 128
1200 11 129
1201 11 130
1202 11 131
1203 11 132
1204 11 133
1205 11 134
1206 11 135
1207 11 136
1208 11 137
1209 11 138
1210 11 139
1211 11 140
1212 11 141
1213 11 142
1214 11 143
1215 11 144
1216 11 145
1217 11 146
1218 11 147
1219 11 148
1220 11 149
1221 11 150
1222 11 151
1223 11 152
1224 11 153
1225 11 154
1226 11 155
1227 11 156
1228 11 157
1229 11 158
1230 11 159
1231 11 160
1232 11 161
1233 11 162
1234 11 163
1235 11 164
1236 11 165
1237 11 166
1238 11 167
1239 11 168
1240 11 169
1241 11 170
1242 11 171
1243 11 172
1244 11 173
1245 11 174
1246 11 175
1247 11 176
1248 11 177
1249 11 178
1250 11 179
1251 11 180
1252 11 181
1253 11 182
1254 11 183
1255 11 184
1256 11 185
1257 11 186
1258 11 187
1259 11 188
1260 11 189
1261 11 190
1262 11 191
1263 11 192
1264 11 193
1265 11 194
1266 11 195
1267 11 196
1268 11 197
1269 11 198
1270 11 199
1271 11 200
1272 11 201
1273 11 202
1274 11 203
1275 11 204
1276 11 205
1277 11 206
1278 11 207
1279 11 208
1280 11 209
1281 11 210
1282 11 211
1283 11 212
1284 11 213
1285 11 214
1286 11 215
1287 11 216
1288 11 217
1289 11 218
1290 11 219
1291 11 220
1292 11 221
1293 11 222
1294 11 223
1295 11 224
1296 11 225
1297 11 226
1298 11 227
1299 11 228
1300 11 229
1301 11 230
1302 11 231
1303 11 232
1304 11 233
1305 11 234
1306 11 235
1307 11 236
1308 11 237
1309 11 238
1310 11 239
1311 11 240
1312 11 241
1313 11 242
1314 11 243
1315 11 244
1316 11 245
1317 11 246
1318 11 247
1319 11 248
1320 11 249
1321 11 250
1322 11 251
1323 11 252
1324 11 253
1325 11 254
1326 11 255
1327 11 256
1328 11 257
1329 11 258
1330 11 259
1331 11 260
1332 11 261
1333 11 262
1334 11 263
1335 11 264
1336 11 265
1337 11 266
1338 11 267
1339 11 268
1340 11 269
1341 11 270
1342 11 271
1343 11 272
1344 11 273
1345 11 274
1346 11 275
1347 11 276
1348 11 277
1349 11 278
1350 11 279
1351 11 280
1352 11 281
1353 11 282
1354 11 283
1355 11 284
1356 11 285
1357 11 286
1358 11 287
1359 11 288
1360 11 289
1361 11 290
1362 11 291
1363 11 292
1364 11 293
1365 11 294
1366 11 295
1367 11 296
1368 11 297
1369 11 298
1370 12 36
1371 12 37
1372 12 38
1373 12 39
1374 12 40
1375 12 41
1376 12 42
1377 12 43
1378 12 44
1379 12 45
1380 12 46
1381 12 47
1382 12 48
1383 12 49
1384 12 50
1385 12 51
1386 12 52
1387 12 53
1388 12 54
1389 12 55
1390 12 56
1391 12 57
1392 12 58
1393 12 59
1394 12 60
1395 12 61
1396 12 62
1397 12 63
1398 12 64
1399 12 65
1400 12 66
1401 12 67
1402 12 68
1403 12 69
1404 12 70
1405 12 71
1406 12 72
1407 12 73
1408 12 74
1409 12 75
1410 12 76
1411 12 77
1412 12 78
1413 12 79
1414 12 80
1415 12 81
1416 12 82
1417 12 83
1418 12 84
1419 12 85
1420 12 86
1421 12 87
1422 12 88
1423 12 89
1424 12 90
1425 12 91
1426 12 92
1427 12 93
1428 12 94
1429 12 95
1430 12 96
1431 12 97
1432 12 98
1433 12 99
1434 12 100
1435 12 101
1436 12 102
1437 12 103
1438 12 104
1439 12 105
1440 12 106
1441 12 107
1442 12 108
1443 12 109
1444 12 110
1445 12 111
1446 12 112
1447 12 113
1448 12 114
1449 12 115
1450 12 116
1451 12 117
1452 12 118
1453 12 119
1454 12 120
1455 12 121
1456 12 122
1457 12 123
1458 12 124
1459 12 125
1460 12 126
1461 12 127
1462 12 128
1463 12 129
1464 12 130
1465 12 131
1466 12 132
1467 12 133
1468 12 134
1469 12 135
1470 12 136
1471 12 137
1472 12 138
1473 12 139
1474 12 140
1475 12 141
1476 12 142
1477 12 143
1478 12 144
1479 12 145
1480 12 146
1481 12 147
1482 12 148
1483 12 149
1484 12 150
1485 12 151
1486 12 152
1487 12 153
1488 12 154
1489 12 155
1490 12 156
1491 12 157
1492 12 158
1493 12 159
1494 12 160
1495 12 161
1496 12 162
1497 12 163
1498 12 164
1499 12 165
1500 12 166
1501 12 167
1502 12 168
1503 12 169
1504 12 170
1505 12 171
1506 12 172
1507 12 173
1508 12 174
1509 12 175
1510 12 176
1511 12 177
1512 12 178
1513 12 179
1514 12 180
1515 12 181
1516 12 182
1517 12 183
1518 12 184
1519 12 185
1520 12 186
1521 12 187
1522 12 188
1523 12 189
1524 12 190
1525 12 191
1526 12 192
1527 12 193
1528 12 194
1529 12 195
1530 12 196
1531 12 197
1532 12 198
1533 12 199
1534 12 200
1535 12 201
1536 12 202
1537 12 203
1538 12 204
1539 12 205
1540 12 206
1541 12 207
1542 12 208
1543 12 209
1544 12 210
1545 12 211
1546 12 212
1547 12 213
1548 12 214
1549 12 215
1550 12 216
1551 12 217
1552 12 218
1553 12 219
1554 12 220
1555 12 221
1556 12 222
1557 12 223
1558 12 224
1559 12 225
1560 12 226
1561 12 227
1562 12 228
1563 12 229
1564 12 230
1565 12 231
1566 12 232
1567 12 233
1568 12 234
1569 12 235
1570 12 236
1571 12 237
1572 12 238
1573 12 239
1574 12 240
1575 12 241
1576 12 242
1577 12 243
1578 12 244
1579 12 245
1580 12 246
1581 12 247
1582 12 248
1583 12 249
1584 12 250
1585 12 251
1586 12 252
1587 12 253
1588 12 254
1589 12 255
1590 12 256
1591 12 257
1592 12 258
1593 12 259
1594 12 260
1595 12 261
1596 12 262
1597 12 263
1598 12 264
1599 12 265
1600 12 266
1601 12 267
1602 12 268
1603 12 269
1604 12 270
1605 12 271
1606 12 272
1607 12 273
1608 12 274
1609 12 275
1610 12 276
1611 12 277
1612 12 278
1613 12 279
1614 12 280
1615 12 281
1616 12 282
1617 12 283
1618 12 284
1619 12 285
1620 12 286
1621 12 287
1622 12 288
1623 12 289
1624 12 290
1625 12 291
1626 12 292
1627 12 293
1628 12 294
1629 12 295
1630 12 296
1631 12 297
1632 12 298
\.
--
-- Data for Name: asset_asset; Type: TABLE DATA; Schema: public; Owner: erp_user
--
COPY public.asset_asset (id, created_at, is_active, asset_name, asset_description, asset_tracking_id, asset_purchase_date, asset_purchase_cost, asset_status, expiry_date, notify_before, asset_category_id_id, asset_lot_number_id_id, created_by_id, modified_by_id, owner_id) FROM stdin;
\.
--
-- Data for Name: asset_assetassignment; Type: TABLE DATA; Schema: public; Owner: erp_user
--
COPY public.asset_assetassignment (id, created_at, is_active, assigned_date, return_date, return_condition, return_status, return_request, asset_id_id, assigned_by_employee_id_id, assigned_to_employee_id_id, created_by_id, modified_by_id) FROM stdin;
\.
--
-- Data for Name: asset_assetassignment_assign_images; Type: TABLE DATA; Schema: public; Owner: erp_user
--
COPY public.asset_assetassignment_assign_images (id, assetassignment_id, returnimages_id) FROM stdin;
\.
--
-- Data for Name: asset_assetassignment_return_images; Type: TABLE DATA; Schema: public; Owner: erp_user
--
COPY public.asset_assetassignment_return_images (id, assetassignment_id, returnimages_id) FROM stdin;
\.
--
-- Data for Name: asset_assetcategory; Type: TABLE DATA; Schema: public; Owner: erp_user
--
COPY public.asset_assetcategory (id, created_at, is_active, asset_category_name, asset_category_description, created_by_id, modified_by_id) FROM stdin;
\.
--
-- Data for Name: asset_assetcategory_company_id; Type: TABLE DATA; Schema: public; Owner: erp_user
--
COPY public.asset_assetcategory_company_id (id, assetcategory_id, company_id) FROM stdin;
\.
--
-- Data for Name: asset_assetdocuments; Type: TABLE DATA; Schema: public; Owner: erp_user
--
COPY public.asset_assetdocuments (id, created_at, is_active, file, asset_report_id, created_by_id, modified_by_id) FROM stdin;
\.
--
-- Data for Name: asset_assetlot; Type: TABLE DATA; Schema: public; Owner: erp_user
--
COPY public.asset_assetlot (id, created_at, is_active, lot_number, lot_description, created_by_id, modified_by_id) FROM stdin;
\.
--
-- Data for Name: asset_assetlot_company_id; Type: TABLE DATA; Schema: public; Owner: erp_user
--
COPY public.asset_assetlot_company_id (id, assetlot_id, company_id) FROM stdin;
\.
--
-- Data for Name: asset_assetreport; Type: TABLE DATA; Schema: public; Owner: erp_user
--
COPY public.asset_assetreport (id, created_at, is_active, title, asset_id_id, created_by_id, modified_by_id) FROM stdin;
\.
--
-- Data for Name: asset_assetrequest; Type: TABLE DATA; Schema: public; Owner: erp_user
--
COPY public.asset_assetrequest (id, created_at, is_active, asset_request_date, description, asset_request_status, asset_category_id_id, created_by_id, modified_by_id, requested_employee_id_id) FROM stdin;
\.
--
-- Data for Name: asset_returnimages; Type: TABLE DATA; Schema: public; Owner: erp_user
--
COPY public.asset_returnimages (id, created_at, is_active, image, created_by_id, modified_by_id) FROM stdin;
\.
--
-- Data for Name: attendance_attendance; Type: TABLE DATA; Schema: public; Owner: erp_user
--
COPY public.attendance_attendance (id, created_at, is_active, attendance_date, attendance_clock_in_date, attendance_clock_in, attendance_clock_out_date, attendance_clock_out, attendance_worked_hour, minimum_hour, attendance_overtime, attendance_overtime_approve, attendance_validated, at_work_second, overtime_second, approved_overtime_second, is_validate_request, is_bulk_request, is_validate_request_approved, request_description, request_type, is_holiday, requested_data, attendance_day_id, batch_attendance_id_id, created_by_id, employee_id_id, modified_by_id, shift_id_id, work_type_id_id) FROM stdin;
\.
--
-- Data for Name: attendance_attendanceactivity; Type: TABLE DATA; Schema: public; Owner: erp_user
--
COPY public.attendance_attendanceactivity (id, created_at, is_active, attendance_date, in_datetime, clock_in_date, clock_in, clock_out_date, out_datetime, clock_out, created_by_id, employee_id_id, modified_by_id, shift_day_id) FROM stdin;
\.
--
-- Data for Name: attendance_attendancegeneralsetting; Type: TABLE DATA; Schema: public; Owner: erp_user
--
COPY public.attendance_attendancegeneralsetting (id, created_at, is_active, time_runner, enable_check_in, company_id_id, created_by_id, modified_by_id) FROM stdin;
3 2025-02-03 08:24:38.790472+00 t f f \N 273 273
\.
--
-- Data for Name: attendance_attendancelatecomeearlyout; Type: TABLE DATA; Schema: public; Owner: erp_user
--
COPY public.attendance_attendancelatecomeearlyout (id, is_active, type, created_at, attendance_id_id, created_by_id, employee_id_id, modified_by_id) FROM stdin;
\.
--
-- Data for Name: attendance_attendanceovertime; Type: TABLE DATA; Schema: public; Owner: erp_user
--
COPY public.attendance_attendanceovertime (id, created_at, is_active, month, month_sequence, year, worked_hours, pending_hours, overtime, hour_account_second, hour_pending_second, overtime_second, created_by_id, employee_id_id, modified_by_id) FROM stdin;
\.
--
-- Data for Name: attendance_attendancerequestcomment; Type: TABLE DATA; Schema: public; Owner: erp_user
--
COPY public.attendance_attendancerequestcomment (id, created_at, is_active, comment, created_by_id, employee_id_id, modified_by_id, request_id_id) FROM stdin;
\.
--
-- Data for Name: attendance_attendancerequestcomment_files; Type: TABLE DATA; Schema: public; Owner: erp_user
--
COPY public.attendance_attendancerequestcomment_files (id, attendancerequestcomment_id, attendancerequestfile_id) FROM stdin;
\.
--
-- Data for Name: attendance_attendancerequestfile; Type: TABLE DATA; Schema: public; Owner: erp_user
--
COPY public.attendance_attendancerequestfile (id, created_at, is_active, file, created_by_id, modified_by_id) FROM stdin;
\.
--
-- Data for Name: attendance_attendancevalidationcondition; Type: TABLE DATA; Schema: public; Owner: erp_user
--
COPY public.attendance_attendancevalidationcondition (id, created_at, is_active, validation_at_work, minimum_overtime_to_approve, overtime_cutoff, auto_approve_ot, created_by_id, modified_by_id) FROM stdin;
\.
--
-- Data for Name: attendance_attendancevalidationcondition_company_id; Type: TABLE DATA; Schema: public; Owner: erp_user
--
COPY public.attendance_attendancevalidationcondition_company_id (id, attendancevalidationcondition_id, company_id) FROM stdin;
\.
--
-- Data for Name: attendance_batchattendance; Type: TABLE DATA; Schema: public; Owner: erp_user
--
COPY public.attendance_batchattendance (id, created_at, is_active, title, created_by_id, modified_by_id) FROM stdin;
\.
--
-- Data for Name: attendance_gracetime; Type: TABLE DATA; Schema: public; Owner: erp_user
--
COPY public.attendance_gracetime (id, created_at, is_active, allowed_time, allowed_time_in_secs, allowed_clock_in, allowed_clock_out, is_default, created_by_id, modified_by_id) FROM stdin;
\.
--
-- Data for Name: attendance_gracetime_company_id; Type: TABLE DATA; Schema: public; Owner: erp_user
--
COPY public.attendance_gracetime_company_id (id, gracetime_id, company_id) FROM stdin;
\.
--
-- Data for Name: attendance_historicalattendance; Type: TABLE DATA; Schema: public; Owner: erp_user
--
COPY public.attendance_historicalattendance (id, created_at, is_active, history_title, history_description, history_highlight, attendance_date, attendance_clock_in_date, attendance_clock_in, attendance_clock_out_date, attendance_clock_out, attendance_worked_hour, minimum_hour, attendance_overtime, attendance_overtime_approve, attendance_validated, at_work_second, overtime_second, approved_overtime_second, is_validate_request, is_bulk_request, is_validate_request_approved, request_description, request_type, is_holiday, requested_data, history_id, history_date, history_change_reason, history_type, attendance_day_id, batch_attendance_id_id, created_by_id, employee_id_id, history_relation_id, history_user_id, modified_by_id, shift_id_id, work_type_id_id) FROM stdin;
\.
--
-- Data for Name: attendance_historicalattendance_history_tags; Type: TABLE DATA; Schema: public; Owner: erp_user
--
COPY public.attendance_historicalattendance_history_tags (id, historicalattendance_id, audittag_id) FROM stdin;
\.
--
-- Data for Name: attendance_overrideattendances; Type: TABLE DATA; Schema: public; Owner: erp_user
--
COPY public.attendance_overrideattendances (attendance_ptr_id) FROM stdin;
\.
--
-- Data for Name: attendance_penaltyaccount; Type: TABLE DATA; Schema: public; Owner: erp_user
--
COPY public.attendance_penaltyaccount (id, created_at, is_active, minus_leaves, deduct_from_carry_forward, penalty_amount, created_by_id, employee_id_id, late_early_id_id, leave_request_id_id, leave_type_id_id, modified_by_id) FROM stdin;
\.
--
-- Data for Name: attendance_workrecords; Type: TABLE DATA; Schema: public; Owner: erp_user
--
COPY public.attendance_workrecords (id, record_name, work_record_type, date, at_work, min_hour, at_work_second, min_hour_second, note, message, is_attendance_record, is_leave_record, day_percentage, last_update, employee_id_id) FROM stdin;
5 \N ABS 2025-02-08 00:00 00:00 0 0 Absent f t 0 2025-02-04 08:17:32.57175+00 277
6 \N ABS 2025-02-20 00:00 00:00 0 0 Absent f t 0 2025-02-04 08:18:48.332773+00 277
7 \N ABS 2025-02-21 00:00 00:00 0 0 Absent f t 0 2025-02-04 08:18:48.340031+00 277
8 \N ABS 2025-02-22 00:00 00:00 0 0 Absent f t 0 2025-02-04 08:18:48.346379+00 277
9 \N ABS 2025-02-05 00:00 00:00 0 0 Absent f t 0 2025-02-04 08:18:57.756996+00 277
10 \N ABS 2025-02-06 00:00 00:00 0 0 Absent f t 0 2025-02-04 08:18:57.765493+00 277
11 \N ABS 2025-02-07 00:00 00:00 0 0 Absent f t 0 2025-02-04 08:18:57.773459+00 277
\.
--
-- Data for Name: auditlog_logentry; Type: TABLE DATA; Schema: public; Owner: erp_user
--
COPY public.auditlog_logentry (id, object_pk, object_id, object_repr, action, changes, "timestamp", actor_id, content_type_id, remote_addr, additional_data, serialized_data, cid, changes_text) FROM stdin;
4402 8zfl7dfeevmtous7jkvbr2nffnr8ajq0 \N 8zfl7dfeevmtous7jkvbr2nffnr8ajq0 2 {"expire_date": ["2025-02-17 08:16:17.413763", "None"], "session_key": ["8zfl7dfeevmtous7jkvbr2nffnr8ajq0", "None"], "session_data": [".eJytk19PwjAUxb8K6TOOjQ3Y9miy-CLqGzGGLLfthVW3dmk7kBC-ux0RHWDiH3zrPff0d9uTdkuoRuBMNxU1JH3akkaXJCWFtbVJBwPUtcexAsktssJTejkgfSKhQme60Wpti94dWLFC4_SFaiQnqdUN7vo_QGFVl2qD2GEepEtoh8XVSuD6C_Ze_8OACrmADm9ff3IWUJrfgCiY7s3b8kKYYEp2iG35H8RSLVWezdSsUuDVsvsETlun4-Z9kkNji7wxqHPhdBKQI40Ce8F2A-HPIJfKcxOtFtRrLd5713hTxbG8fvceAQowRYul49D3hwkAhIvYj_lolCDHKICEhwyHPg04hSgcjpPJeJJEYZTESTTkAfNj6o9jBzVYIrPIc6aqGuSGpMG5mAtpLEjmbr8lH8bzv7APPyXfhumsFl-ts043vQPPbXeJBDvXE7Zsg86mD7f3j1nWBixKi9qd6PCe248bzHdv3e9MDw:1tercv:gVidaClCCTXltkt2F_qS_XAojpwKnLvweNPBOryihY8", "None"]} 2025-02-03 08:17:50.862857+00 \N 6 122.176.134.248 \N \N \N
4403 2 2 False 0 {"id": ["None", "2"], "is_installed": ["None", "False"]} 2025-02-03 08:17:51.43612+00 \N 15 122.176.134.248 \N \N \N
4404 2 2 Payroll Settings $ 0 {"id": ["None", "2"], "position": ["None", "postfix"], "is_active": ["None", "True"], "created_at": ["None", "2025-02-03 08:17:51.444875"], "currency_symbol": ["None", "$"]} 2025-02-03 08:17:51.448833+00 \N 175 122.176.134.248 \N \N \N
4405 q8wyca5jv0sqedyd7559461qeml9xd6t \N q8wyca5jv0sqedyd7559461qeml9xd6t 0 {"expire_date": ["None", "2025-02-17 08:17:51.470274"], "session_key": ["None", "q8wyca5jv0sqedyd7559461qeml9xd6t"], "session_data": ["None", ".eJyrVkoqSk1MSS4qzU0qVrKKrlYqLcpRslLKKCkpKLbS108tKtBLSc1NzEspSU3O0MsvStdX0lHKS8xNBSpy9wOy0_JL81KUrEqKSlNrdYjQnpOfnpmHZAiYj2ZObC0Aisk0Aw:1tereR:2aRhXEM4F2htapf__b5YVEF3vdGtsaiD0MgXZi8bxOc"]} 2025-02-03 08:17:51.471673+00 \N 6 \N \N \N \N
4406 mrq5d0aq3jrkn930oh20t8bacqcwn43a \N mrq5d0aq3jrkn930oh20t8bacqcwn43a 0 {"expire_date": ["None", "2025-02-17 08:20:36.725363"], "session_key": ["None", "mrq5d0aq3jrkn930oh20t8bacqcwn43a"], "session_data": ["None", "eyJ0aXRsZSI6IkVNUExPWUVFIn0:1terh6:cS3RSlplS8oMSg6REjZ8Keij732zJmI58LL8pJC343I"]} 2025-02-03 08:20:36.72745+00 \N 6 \N \N \N \N
4407 273 273 Admin 0 {"id": ["None", "273"], "email": ["None", "info@growthnatives.com"], "is_staff": ["None", "True"], "password": ["None", "pbkdf2_sha256$600000$0NguOd81wFBcJKGYXS9rL5$pKt82UHc1Tl966wclNVQnG7WbqBjqUCB8wV0ztOmHL0="], "username": ["None", "Admin"], "is_active": ["None", "True"], "last_name": ["None", ""], "first_name": ["None", ""], "date_joined": ["None", "2025-02-03 08:24:18.811470"], "is_superuser": ["None", "True"], "notifications": ["None", "notifications.Notification.None"], "faq_modified_by": ["None", "helpdesk.FAQ.None"], "is_new_employee": ["None", "False"], "tags_modified_by": ["None", "base.Tags.None"], "asset_modified_by": ["None", "asset.Asset.None"], "skill_modified_by": ["None", "recruitment.Skill.None"], "stage_modified_by": ["None", "recruitment.Stage.None"], "period_modified_by": ["None", "pms.Period.None"], "policy_modified_by": ["None", "employee.Policy.None"], "ticket_modified_by": ["None", "helpdesk.Ticket.None"], "comment_modified_by": ["None", "helpdesk.Comment.None"], "company_modified_by": ["None", "base.Company.None"], "holiday_modified_by": ["None", "leave.Holiday.None"], "jobrole_modified_by": ["None", "base.JobRole.None"], "payslip_modified_by": ["None", "payroll.Payslip.None"], "assetlot_modified_by": ["None", "asset.AssetLot.None"], "contract_modified_by": ["None", "payroll.Contract.None"], "document_modified_by": ["None", "horilla_documents.Document.None"], "feedback_modified_by": ["None", "pms.Feedback.None"], "holidays_modified_by": ["None", "base.Holidays.None"], "meetings_modified_by": ["None", "pms.Meetings.None"], "question_modified_by": ["None", "pms.Question.None"], "user_excluded_column": ["None", "horilla_views.ToggleColumn.None"], "worktype_modified_by": ["None", "base.WorkType.None"], "activetab_modified_by": ["None", "horilla_views.ActiveTab.None"], "allowance_modified_by": ["None", "payroll.Allowance.None"], "candidate_modified_by": ["None", "recruitment.Candidate.None"], "deduction_modified_by": ["None", "payroll.Deduction.None"], "gracetime_modified_by": ["None", "attendance.GraceTime.None"], "keyresult_modified_by": ["None", "pms.KeyResult.None"], "leavetype_modified_by": ["None", "leave.LeaveType.None"], "notefiles_modified_by": ["None", "employee.NoteFiles.None"], "objective_modified_by": ["None", "pms.Objective.None"], "skillzone_modified_by": ["None", "recruitment.SkillZone.None"], "stagenote_modified_by": ["None", "recruitment.StageNote.None"], "actiontype_modified_by": ["None", "employee.Actiontype.None"], "activeview_modified_by": ["None", "horilla_views.ActiveView.None"], "attachment_modified_by": ["None", "helpdesk.Attachment.None"], "attendance_modified_by": ["None", "attendance.Attendance.None"], "bonuspoint_modified_by": ["None", "employee.BonusPoint.None"], "department_modified_by": ["None", "base.Department.None"], "exitreason_modified_by": ["None", "offboarding.ExitReason.None"], "stagefiles_modified_by": ["None", "recruitment.StageFiles.None"], "taxbracket_modified_by": ["None", "payroll.TaxBracket.None"], "tickettype_modified_by": ["None", "helpdesk.TicketType.None"], "activegroup_modified_by": ["None", "horilla_views.ActiveGroup.None"], "assetreport_modified_by": ["None", "asset.AssetReport.None"], "employeetag_modified_by": ["None", "employee.EmployeeTag.None"], "faqcategory_modified_by": ["None", "helpdesk.FAQCategory.None"], "jobposition_modified_by": ["None", "base.JobPosition.None"], "loanaccount_modified_by": ["None", "payroll.LoanAccount.None"], "offboarding_modified_by": ["None", "offboarding.Offboarding.None"], "recruitment_modified_by": ["None", "recruitment.Recruitment.None"], "savedfilter_modified_by": ["None", "horilla_views.SavedFilter.None"], "announcement_modified_by": ["None", "base.Announcement.None"], "assetrequest_modified_by": ["None", "asset.AssetRequest.None"], "claimrequest_modified_by": ["None", "helpdesk.ClaimRequest.None"], "companyleave_modified_by": ["None", "leave.CompanyLeave.None"], "employeenote_modified_by": ["None", "employee.EmployeeNote.None"], "employeetask_modified_by": ["None", "offboarding.EmployeeTask.None"], "employeetype_modified_by": ["None", "base.EmployeeType.None"], "filingstatus_modified_by": ["None", "payroll.FilingStatus.None"], "leaverequest_modified_by": ["None", "leave.LeaveRequest.None"], "rejectreason_modified_by": ["None", "recruitment.RejectReason.None"], "returnimages_modified_by": ["None", "asset.ReturnImages.None"], "shiftrequest_modified_by": ["None", "base.ShiftRequest.None"], "togglecolumn_modified_by": ["None", "horilla_views.ToggleColumn.None"], "assetcategory_modified_by": ["None", "asset.AssetCategory.None"], "candidatetask_modified_by": ["None", "onboarding.CandidateTask.None"], "companyleaves_modified_by": ["None", "base.CompanyLeaves.None"], "employeeshift_modified_by": ["None", "base.EmployeeShift.None"], "reimbursement_modified_by": ["None", "payroll.Reimbursement.None"], "restrictleave_modified_by": ["None", "leave.RestrictLeave.None"], "rotatingshift_modified_by": ["None", "base.RotatingShift.None"], "assetdocuments_modified_by": ["None", "asset.AssetDocuments.None"], "availableleave_modified_by": ["None", "leave.AvailableLeave.None"], "candidatestage_modified_by": ["None", "onboarding.CandidateStage.None"], "mailautomation_modified_by": ["None", "horilla_automations.MailAutomation.None"], "onboardingtask_modified_by": ["None", "onboarding.OnboardingTask.None"], "penaltyaccount_modified_by": ["None", "attendance.PenaltyAccount.None"], "surveytemplate_modified_by": ["None", "recruitment.SurveyTemplate.None"], "assetassignment_modified_by": ["None", "asset.AssetAssignment.None"], "batchattendance_modified_by": ["None", "attendance.BatchAttendance.None"], "candidaterating_modified_by": ["None", "recruitment.CandidateRating.None"], "documentrequest_modified_by": ["None", "horilla_documents.DocumentRequest.None"], "offboardingnote_modified_by": ["None", "offboarding.OffboardingNote.None"], "offboardingtask_modified_by": ["None", "offboarding.OffboardingTask.None"], "onboardingstage_modified_by": ["None", "onboarding.OnboardingStage.None"], "payrollsettings_modified_by": ["None", "payroll.PayrollSettings.None"], "penaltyaccounts_modified_by": ["None", "base.PenaltyAccounts.None"], "questionoptions_modified_by": ["None", "pms.QuestionOptions.None"], "worktyperequest_modified_by": ["None", "base.WorkTypeRequest.None"], "biometricdevices_modified_by": ["None", "biometric.BiometricDevices.None"], "offboardingstage_modified_by": ["None", "offboarding.OffboardingStage.None"], "onboardingportal_modified_by": ["None", "onboarding.OnboardingPortal.None"], "questionordering_modified_by": ["None", "recruitment.QuestionOrdering.None"], "questiontemplate_modified_by": ["None", "pms.QuestionTemplate.None"], "rotatingworktype_modified_by": ["None", "base.RotatingWorkType.None"], "candidatedocument_modified_by": ["None", "recruitment.CandidateDocument.None"], "departmentmanager_modified_by": ["None", "helpdesk.DepartmentManager.None"], "employeeobjective_modified_by": ["None", "pms.EmployeeObjective.None"], "interviewschedule_modified_by": ["None", "recruitment.InterviewSchedule.None"], "recruitmentsurvey_modified_by": ["None", "recruitment.RecruitmentSurvey.None"], "rejectedcandidate_modified_by": ["None", "recruitment.RejectedCandidate.None"], "resignationletter_modified_by": ["None", "offboarding.ResignationLetter.None"], "attendanceactivity_modified_by": ["None", "attendance.AttendanceActivity.None"], "attendanceovertime_modified_by": ["None", "attendance.AttendanceOverTime.None"], "disciplinaryaction_modified_by": ["None", "employee.DisciplinaryAction.None"], "employeebonuspoint_modified_by": ["None", "pms.EmployeeBonusPoint.None"], "policymultiplefile_modified_by": ["None", "employee.PolicyMultipleFile.None"], "skillzonecandidate_modified_by": ["None", "recruitment.SkillZoneCandidate.None"], "accountblockunblock_modified_by": ["None", "horilla_audit.AccountBlockUnblock.None"], "announcementcomment_modified_by": ["None", "base.AnnouncementComment.None"], "employeebankdetails_modified_by": ["None", "employee.EmployeeBankDetails.None"], "horillamailtemplate_modified_by": ["None", "base.HorillaMailTemplate.None"], "leavegeneralsetting_modified_by": ["None", "leave.LeaveGeneralSetting.None"], "leaverequestcomment_modified_by": ["None", "leave.LeaverequestComment.None"], "offboardingemployee_modified_by": ["None", "offboarding.OffboardingEmployee.None"], "rotatingshiftassign_modified_by": ["None", "base.RotatingShiftAssign.None"], "shiftrequestcomment_modified_by": ["None", "base.ShiftRequestComment.None"], "defaultaccessibility_modified_by": ["None", "accessibility.DefaultAccessibility.None"], "attendancerequestfile_modified_by": ["None", "attendance.AttendanceRequestFile.None"], "employeeshiftschedule_modified_by": ["None", "base.EmployeeShiftSchedule.None"], "historytrackingfields_modified_by": ["None", "horilla_audit.HistoryTrackingFields.None"], "tracklatecomeearlyout_modified_by": ["None", "base.TrackLateComeEarlyOut.None"], "employeegeneralsetting_modified_by": ["None", "employee.EmployeeGeneralSetting.None"], "leaveallocationrequest_modified_by": ["None", "leave.LeaveAllocationRequest.None"], "rotatingworktypeassign_modified_by": ["None", "base.RotatingWorkTypeAssign.None"], "worktyperequestcomment_modified_by": ["None", "base.WorkTypeRequestComment.None"], "dashboardemployeecharts_modified_by": ["None", "base.DashboardEmployeeCharts.None"], "recruitmentmailtemplate_modified_by": ["None", "recruitment.RecruitmentMailTemplate.None"], "recruitmentsurveyanswer_modified_by": ["None", "recruitment.RecruitmentSurveyAnswer.None"], "attendancegeneralsetting_modified_by": ["None", "attendance.AttendanceGeneralSetting.None"], "attendancerequestcomment_modified_by": ["None", "attendance.AttendanceRequestComment.None"], "candidatedocumentrequest_modified_by": ["None", "recruitment.CandidateDocumentRequest.None"], "compensatoryleaverequest_modified_by": ["None", "leave.CompensatoryLeaveRequest.None"], "dynamicemailconfiguration_modified_by": ["None", "base.DynamicEmailConfiguration.None"], "employeepastleaverestrict_modified_by": ["None", "leave.EmployeePastLeaveRestrict.None"], "multipleapprovalcondition_modified_by": ["None", "base.MultipleApprovalCondition.None"], "offboardinggeneralsetting_modified_by": ["None", "offboarding.OffboardingGeneralSetting.None"], "recruitmentgeneralsetting_modified_by": ["None", "recruitment.RecruitmentGeneralSetting.None"], "attendancelatecomeearlyout_modified_by": ["None", "attendance.AttendanceLateComeEarlyOut.None"], "reimbursementrequestcomment_modified_by": ["None", "payroll.ReimbursementrequestComment.None"], "offboardingstagemultiplefile_modified_by": ["None", "offboarding.OffboardingStageMultipleFile.None"], "attendancevalidationcondition_modified_by": ["None", "attendance.AttendanceValidationCondition.None"], "leaveallocationrequestcomment_modified_by": ["None", "leave.LeaveallocationrequestComment.None"], "compensatoryleaverequestcomment_modified_by": ["None", "leave.CompensatoryLeaverequestComment.None"]} 2025-02-03 08:24:19.121589+00 \N 4 \N \N \N \N
4408 14 14 Admin GN - 0 Points as of 2025-02-03 08:24:19.134568+00:00 0 {"id": ["None", "9"], "points": ["None", "0"], "is_active": ["None", "True"], "created_at": ["None", "2025-02-03 08:24:19.133143"], "history_id": ["None", "14"], "employee_id": ["None", "36"], "history_date": ["None", "2025-02-03 08:24:19.134568"], "history_type": ["None", "+"], "history_relation": ["None", "9"], "history_highlight": ["None", "False"]} 2025-02-03 08:24:19.138343+00 \N 60 \N \N \N \N
4409 9 9 Admin GN - 0 Points 0 {"id": ["None", "9"], "points": ["None", "0"], "is_active": ["None", "True"], "created_at": ["None", "2025-02-03 08:24:19.133143"], "employee_id": ["None", "36"], "history_set": ["None", "employee.HistoricalBonusPoint.None"], "employeebonuspoint_set": ["None", "pms.EmployeeBonusPoint.None"]} 2025-02-03 08:24:19.140438+00 \N 52 \N \N \N \N
4410 36 36 Admin GN 0 {"id": ["None", "36"], "email": ["None", "info@growthnatives.com"], "phone": ["None", ""], "gender": ["None", "male"], "ticket": ["None", "helpdesk.Ticket.None"], "comment": ["None", "pms.Comment.None"], "is_active": ["None", "True"], "approved_by": ["None", "payroll.Reimbursement.None"], "assigned_by": ["None", "asset.AssetAssignment.None"], "bonus_point": ["None", "Admin GN - 0 Points"], "dep_manager": ["None", "helpdesk.DepartmentManager.None"], "penalty_set": ["None", "attendance.PenaltyAccount.None"], "contract_set": ["None", "payroll.Contract.None"], "candidate_get": ["None", "recruitment.Candidate.None"], "employee_name": ["None", "employee.EmployeeNote.None"], "shift_request": ["None", "base.ShiftRequest.None"], "marital_status": ["None", "single"], "available_leave": ["None", "leave.AvailableLeave.None"], "employee_answer": ["None", "pms.Answer.None"], "candidate_rating": ["None", "recruitment.CandidateRating.None"], "employee_comment": ["None", "helpdesk.Comment.None"], "employee_profile": ["None", ""], "employee_user_id": ["None", "273"], "feedback_manager": ["None", "pms.Feedback.None"], "penalty_accounts": ["None", "base.PenaltyAccounts.None"], "employee_overtime": ["None", "attendance.AttendanceOverTime.None"], "feedback_employee": ["None", "pms.Feedback.None"], "reporting_manager": ["None", "employee.EmployeeWorkInformation.None"], "work_type_request": ["None", "base.WorkTypeRequest.None"], "allocated_employee": ["None", "asset.AssetAssignment.None"], "candidate_referral": ["None", "recruitment.Candidate.None"], "employee_last_name": ["None", "GN"], "employee_objective": ["None", "pms.EmployeeObjective.None"], "is_from_onboarding": ["None", "False"], "requested_employee": ["None", "asset.AssetRequest.None"], "employe_bonus_point": ["None", "pms.EmployeeBonusPoint.None"], "employee_first_name": ["None", "Admin"], "employee_key_result": ["None", "pms.KeyResultFeedback.None"], "late_come_early_out": ["None", "attendance.AttendanceLateComeEarlyOut.None"], "employee_attendances": ["None", "attendance.Attendance.None"], "is_directly_converted": ["None", "False"], "leave_request_created": ["None", "leave.LeaveRequest.None"], "employee_meeting_answer": ["None", "pms.MeetingsAnswer.None"], "reallocate_shift_request": ["None", "base.ShiftRequest.None"], "employee_attendance_activities": ["None", "attendance.AttendanceActivity.None"]} 2025-02-03 08:24:19.14851+00 \N 53 \N \N \N \N
4411 65 65 Admin GN 's Contract -2025-02-03 13:54:19.157905 - None as of 2025-02-03 08:24:19.164661+00:00 0 {"id": ["None", "35"], "wage": ["None", "0"], "is_active": ["None", "True"], "wage_type": ["None", "monthly"], "created_at": ["None", "2025-02-03 08:24:19.163498"], "history_id": ["None", "65"], "employee_id": ["None", "36"], "history_date": ["None", "2025-02-03 08:24:19.164661"], "history_type": ["None", "+"], "contract_name": ["None", "Admin GN 's Contract"], "pay_frequency": ["None", "monthly"], "contract_status": ["None", "draft"], "history_relation": ["None", "35"], "contract_document": ["None", ""], "history_highlight": ["None", "False"], "contract_start_date": ["None", "2025-02-03 13:54:19.157905"], "notice_period_in_days": ["None", "30"], "deduct_leave_from_basic_pay": ["None", "True"], "calculate_daily_leave_amount": ["None", "True"], "deduction_for_one_leave_amount": ["None", "0"]} 2025-02-03 08:24:19.168507+00 \N 179 \N \N \N \N
4412 35 35 Admin GN 's Contract -2025-02-03 13:54:19.157905 - None 0 {"id": ["None", "35"], "wage": ["None", "0"], "is_active": ["None", "True"], "wage_type": ["None", "monthly"], "created_at": ["None", "2025-02-03 08:24:19.163498"], "employee_id": ["None", "36"], "history_set": ["None", "payroll.HistoricalContract.None"], "contract_name": ["None", "Admin GN 's Contract"], "pay_frequency": ["None", "monthly"], "contract_status": ["None", "draft"], "contract_document": ["None", ""], "contract_start_date": ["None", "2025-02-03 13:54:19.157905"], "notice_period_in_days": ["None", "30"], "deduct_leave_from_basic_pay": ["None", "True"], "calculate_daily_leave_amount": ["None", "True"], "deduction_for_one_leave_amount": ["None", "0"]} 2025-02-03 08:24:19.170292+00 \N 160 \N \N \N \N
4413 2087 2087 Admin GN - None as of 2025-02-03 08:24:19.171803+00:00 0 {"id": ["None", "35"], "experience": ["None", "0.0"], "history_id": ["None", "2087"], "employee_id": ["None", "36"], "salary_hour": ["None", "0"], "basic_salary": ["None", "0"], "history_date": ["None", "2025-02-03 08:24:19.171803"], "history_type": ["None", "+"], "history_relation": ["None", "35"], "history_highlight": ["None", "False"]} 2025-02-03 08:24:19.175995+00 \N 59 \N \N \N \N
4414 35 35 Admin GN - None 0 {"id": ["None", "35"], "experience": ["None", "0.0"], "employee_id": ["None", "36"], "history_set": ["None", "employee.HistoricalEmployeeWorkInformation.None"], "salary_hour": ["None", "0"], "basic_salary": ["None", "0"]} 2025-02-03 08:24:19.177627+00 \N 55 \N \N \N \N
4415 274 274 Horilla Bot 0 {"id": ["None", "274"], "email": ["None", ""], "is_staff": ["None", "False"], "password": ["None", "pbkdf2_sha256$600000$lRhOBbydNakLBNHUerQLYb$WxSUqZWiE6Vqfihi4Icqs2s5IcKHlLgrAfPLqg1vFf4="], "username": ["None", "Horilla Bot"], "is_active": ["None", "True"], "last_name": ["None", ""], "first_name": ["None", ""], "date_joined": ["None", "2025-02-03 08:24:19.191695"], "is_superuser": ["None", "False"], "notifications": ["None", "notifications.Notification.None"], "faq_modified_by": ["None", "helpdesk.FAQ.None"], "is_new_employee": ["None", "False"], "tags_modified_by": ["None", "base.Tags.None"], "asset_modified_by": ["None", "asset.Asset.None"], "skill_modified_by": ["None", "recruitment.Skill.None"], "stage_modified_by": ["None", "recruitment.Stage.None"], "period_modified_by": ["None", "pms.Period.None"], "policy_modified_by": ["None", "employee.Policy.None"], "ticket_modified_by": ["None", "helpdesk.Ticket.None"], "comment_modified_by": ["None", "helpdesk.Comment.None"], "company_modified_by": ["None", "base.Company.None"], "holiday_modified_by": ["None", "leave.Holiday.None"], "jobrole_modified_by": ["None", "base.JobRole.None"], "payslip_modified_by": ["None", "payroll.Payslip.None"], "assetlot_modified_by": ["None", "asset.AssetLot.None"], "contract_modified_by": ["None", "payroll.Contract.None"], "document_modified_by": ["None", "horilla_documents.Document.None"], "feedback_modified_by": ["None", "pms.Feedback.None"], "holidays_modified_by": ["None", "base.Holidays.None"], "meetings_modified_by": ["None", "pms.Meetings.None"], "question_modified_by": ["None", "pms.Question.None"], "user_excluded_column": ["None", "horilla_views.ToggleColumn.None"], "worktype_modified_by": ["None", "base.WorkType.None"], "activetab_modified_by": ["None", "horilla_views.ActiveTab.None"], "allowance_modified_by": ["None", "payroll.Allowance.None"], "candidate_modified_by": ["None", "recruitment.Candidate.None"], "deduction_modified_by": ["None", "payroll.Deduction.None"], "gracetime_modified_by": ["None", "attendance.GraceTime.None"], "keyresult_modified_by": ["None", "pms.KeyResult.None"], "leavetype_modified_by": ["None", "leave.LeaveType.None"], "notefiles_modified_by": ["None", "employee.NoteFiles.None"], "objective_modified_by": ["None", "pms.Objective.None"], "skillzone_modified_by": ["None", "recruitment.SkillZone.None"], "stagenote_modified_by": ["None", "recruitment.StageNote.None"], "actiontype_modified_by": ["None", "employee.Actiontype.None"], "activeview_modified_by": ["None", "horilla_views.ActiveView.None"], "attachment_modified_by": ["None", "helpdesk.Attachment.None"], "attendance_modified_by": ["None", "attendance.Attendance.None"], "bonuspoint_modified_by": ["None", "employee.BonusPoint.None"], "department_modified_by": ["None", "base.Department.None"], "exitreason_modified_by": ["None", "offboarding.ExitReason.None"], "stagefiles_modified_by": ["None", "recruitment.StageFiles.None"], "taxbracket_modified_by": ["None", "payroll.TaxBracket.None"], "tickettype_modified_by": ["None", "helpdesk.TicketType.None"], "activegroup_modified_by": ["None", "horilla_views.ActiveGroup.None"], "assetreport_modified_by": ["None", "asset.AssetReport.None"], "employeetag_modified_by": ["None", "employee.EmployeeTag.None"], "faqcategory_modified_by": ["None", "helpdesk.FAQCategory.None"], "jobposition_modified_by": ["None", "base.JobPosition.None"], "loanaccount_modified_by": ["None", "payroll.LoanAccount.None"], "offboarding_modified_by": ["None", "offboarding.Offboarding.None"], "recruitment_modified_by": ["None", "recruitment.Recruitment.None"], "savedfilter_modified_by": ["None", "horilla_views.SavedFilter.None"], "announcement_modified_by": ["None", "base.Announcement.None"], "assetrequest_modified_by": ["None", "asset.AssetRequest.None"], "claimrequest_modified_by": ["None", "helpdesk.ClaimRequest.None"], "companyleave_modified_by": ["None", "leave.CompanyLeave.None"], "employeenote_modified_by": ["None", "employee.EmployeeNote.None"], "employeetask_modified_by": ["None", "offboarding.EmployeeTask.None"], "employeetype_modified_by": ["None", "base.EmployeeType.None"], "filingstatus_modified_by": ["None", "payroll.FilingStatus.None"], "leaverequest_modified_by": ["None", "leave.LeaveRequest.None"], "rejectreason_modified_by": ["None", "recruitment.RejectReason.None"], "returnimages_modified_by": ["None", "asset.ReturnImages.None"], "shiftrequest_modified_by": ["None", "base.ShiftRequest.None"], "togglecolumn_modified_by": ["None", "horilla_views.ToggleColumn.None"], "assetcategory_modified_by": ["None", "asset.AssetCategory.None"], "candidatetask_modified_by": ["None", "onboarding.CandidateTask.None"], "companyleaves_modified_by": ["None", "base.CompanyLeaves.None"], "employeeshift_modified_by": ["None", "base.EmployeeShift.None"], "reimbursement_modified_by": ["None", "payroll.Reimbursement.None"], "restrictleave_modified_by": ["None", "leave.RestrictLeave.None"], "rotatingshift_modified_by": ["None", "base.RotatingShift.None"], "assetdocuments_modified_by": ["None", "asset.AssetDocuments.None"], "availableleave_modified_by": ["None", "leave.AvailableLeave.None"], "candidatestage_modified_by": ["None", "onboarding.CandidateStage.None"], "mailautomation_modified_by": ["None", "horilla_automations.MailAutomation.None"], "onboardingtask_modified_by": ["None", "onboarding.OnboardingTask.None"], "penaltyaccount_modified_by": ["None", "attendance.PenaltyAccount.None"], "surveytemplate_modified_by": ["None", "recruitment.SurveyTemplate.None"], "assetassignment_modified_by": ["None", "asset.AssetAssignment.None"], "batchattendance_modified_by": ["None", "attendance.BatchAttendance.None"], "candidaterating_modified_by": ["None", "recruitment.CandidateRating.None"], "documentrequest_modified_by": ["None", "horilla_documents.DocumentRequest.None"], "offboardingnote_modified_by": ["None", "offboarding.OffboardingNote.None"], "offboardingtask_modified_by": ["None", "offboarding.OffboardingTask.None"], "onboardingstage_modified_by": ["None", "onboarding.OnboardingStage.None"], "payrollsettings_modified_by": ["None", "payroll.PayrollSettings.None"], "penaltyaccounts_modified_by": ["None", "base.PenaltyAccounts.None"], "questionoptions_modified_by": ["None", "pms.QuestionOptions.None"], "worktyperequest_modified_by": ["None", "base.WorkTypeRequest.None"], "biometricdevices_modified_by": ["None", "biometric.BiometricDevices.None"], "offboardingstage_modified_by": ["None", "offboarding.OffboardingStage.None"], "onboardingportal_modified_by": ["None", "onboarding.OnboardingPortal.None"], "questionordering_modified_by": ["None", "recruitment.QuestionOrdering.None"], "questiontemplate_modified_by": ["None", "pms.QuestionTemplate.None"], "rotatingworktype_modified_by": ["None", "base.RotatingWorkType.None"], "candidatedocument_modified_by": ["None", "recruitment.CandidateDocument.None"], "departmentmanager_modified_by": ["None", "helpdesk.DepartmentManager.None"], "employeeobjective_modified_by": ["None", "pms.EmployeeObjective.None"], "interviewschedule_modified_by": ["None", "recruitment.InterviewSchedule.None"], "recruitmentsurvey_modified_by": ["None", "recruitment.RecruitmentSurvey.None"], "rejectedcandidate_modified_by": ["None", "recruitment.RejectedCandidate.None"], "resignationletter_modified_by": ["None", "offboarding.ResignationLetter.None"], "attendanceactivity_modified_by": ["None", "attendance.AttendanceActivity.None"], "attendanceovertime_modified_by": ["None", "attendance.AttendanceOverTime.None"], "disciplinaryaction_modified_by": ["None", "employee.DisciplinaryAction.None"], "employeebonuspoint_modified_by": ["None", "pms.EmployeeBonusPoint.None"], "policymultiplefile_modified_by": ["None", "employee.PolicyMultipleFile.None"], "skillzonecandidate_modified_by": ["None", "recruitment.SkillZoneCandidate.None"], "accountblockunblock_modified_by": ["None", "horilla_audit.AccountBlockUnblock.None"], "announcementcomment_modified_by": ["None", "base.AnnouncementComment.None"], "employeebankdetails_modified_by": ["None", "employee.EmployeeBankDetails.None"], "horillamailtemplate_modified_by": ["None", "base.HorillaMailTemplate.None"], "leavegeneralsetting_modified_by": ["None", "leave.LeaveGeneralSetting.None"], "leaverequestcomment_modified_by": ["None", "leave.LeaverequestComment.None"], "offboardingemployee_modified_by": ["None", "offboarding.OffboardingEmployee.None"], "rotatingshiftassign_modified_by": ["None", "base.RotatingShiftAssign.None"], "shiftrequestcomment_modified_by": ["None", "base.ShiftRequestComment.None"], "defaultaccessibility_modified_by": ["None", "accessibility.DefaultAccessibility.None"], "attendancerequestfile_modified_by": ["None", "attendance.AttendanceRequestFile.None"], "employeeshiftschedule_modified_by": ["None", "base.EmployeeShiftSchedule.None"], "historytrackingfields_modified_by": ["None", "horilla_audit.HistoryTrackingFields.None"], "tracklatecomeearlyout_modified_by": ["None", "base.TrackLateComeEarlyOut.None"], "employeegeneralsetting_modified_by": ["None", "employee.EmployeeGeneralSetting.None"], "leaveallocationrequest_modified_by": ["None", "leave.LeaveAllocationRequest.None"], "rotatingworktypeassign_modified_by": ["None", "base.RotatingWorkTypeAssign.None"], "worktyperequestcomment_modified_by": ["None", "base.WorkTypeRequestComment.None"], "dashboardemployeecharts_modified_by": ["None", "base.DashboardEmployeeCharts.None"], "recruitmentmailtemplate_modified_by": ["None", "recruitment.RecruitmentMailTemplate.None"], "recruitmentsurveyanswer_modified_by": ["None", "recruitment.RecruitmentSurveyAnswer.None"], "attendancegeneralsetting_modified_by": ["None", "attendance.AttendanceGeneralSetting.None"], "attendancerequestcomment_modified_by": ["None", "attendance.AttendanceRequestComment.None"], "candidatedocumentrequest_modified_by": ["None", "recruitment.CandidateDocumentRequest.None"], "compensatoryleaverequest_modified_by": ["None", "leave.CompensatoryLeaveRequest.None"], "dynamicemailconfiguration_modified_by": ["None", "base.DynamicEmailConfiguration.None"], "employeepastleaverestrict_modified_by": ["None", "leave.EmployeePastLeaveRestrict.None"], "multipleapprovalcondition_modified_by": ["None", "base.MultipleApprovalCondition.None"], "offboardinggeneralsetting_modified_by": ["None", "offboarding.OffboardingGeneralSetting.None"], "recruitmentgeneralsetting_modified_by": ["None", "recruitment.RecruitmentGeneralSetting.None"], "attendancelatecomeearlyout_modified_by": ["None", "attendance.AttendanceLateComeEarlyOut.None"], "reimbursementrequestcomment_modified_by": ["None", "payroll.ReimbursementrequestComment.None"], "offboardingstagemultiplefile_modified_by": ["None", "offboarding.OffboardingStageMultipleFile.None"], "attendancevalidationcondition_modified_by": ["None", "attendance.AttendanceValidationCondition.None"], "leaveallocationrequestcomment_modified_by": ["None", "leave.LeaveallocationrequestComment.None"], "compensatoryleaverequestcomment_modified_by": ["None", "leave.CompensatoryLeaverequestComment.None"]} 2025-02-03 08:24:19.463051+00 \N 4 \N \N \N \N
4416 2oed8484h3cwt9f3xyr5o6opl91xpk9i \N 2oed8484h3cwt9f3xyr5o6opl91xpk9i 0 {"expire_date": ["None", "2025-02-17 08:24:38.303798"], "session_key": ["None", "2oed8484h3cwt9f3xyr5o6opl91xpk9i"], "session_data": ["None", "e30:1terl0:fI6wIgu8TExgTnrz06hoCrT5l-bi2erJSSs3ifskvKU"]} 2025-02-03 08:24:38.304872+00 \N 6 122.176.134.248 \N \N \N
4417 273 273 Admin 1 {"last_login": ["None", "2025-02-03 08:24:38.307938"]} 2025-02-03 08:24:38.309263+00 \N 4 122.176.134.248 \N \N \N
4418 8 8 Admin GN - charts 0 {"id": ["None", "8"], "charts": ["null", "[]"], "employee": ["None", "36"], "is_active": ["None", "True"], "created_at": ["None", "2025-02-03 08:24:38.691881"], "created_by": ["None", "273"], "modified_by": ["None", "273"]} 2025-02-03 08:24:38.695129+00 273 18 122.176.134.248 \N \N \N
4419 3 3 AttendanceGeneralSetting object (3) 0 {"id": ["None", "3"], "is_active": ["None", "True"], "created_at": ["None", "2025-02-03 08:24:38.790472"], "created_by": ["None", "273"], "modified_by": ["None", "273"], "time_runner": ["None", "True"], "enable_check_in": ["None", "True"]} 2025-02-03 08:24:38.795112+00 273 147 122.176.134.248 \N \N \N
4420 9 9 DriverViewed object (9) 0 {"id": ["None", "9"], "user": ["None", "273"], "viewed": ["None", "dashboard"]} 2025-02-03 08:24:41.082041+00 273 20 122.176.134.248 \N \N \N
4421 lq7szz6wosqhq0zytjrbevdoozwgyice \N lq7szz6wosqhq0zytjrbevdoozwgyice 0 {"expire_date": ["None", "2025-02-17 08:25:14.097328"], "session_key": ["None", "lq7szz6wosqhq0zytjrbevdoozwgyice"], "session_data": ["None", "eyJ0aXRsZSI6IkVNUExPWUVFIn0:1terla:tLqs9Ce6bL7Pu5ePgh1hb0xP4CPbi8pRB6OJACwDHK8"]} 2025-02-03 08:25:14.099013+00 \N 6 \N \N \N \N
4422 275 275 alisha.kapoor@growthnatives.com 1 {"password": ["7814783937", "pbkdf2_sha256$600000$QfHTiSpidp1ZfJjPfHBHsA$eqIQzLizLs/N2kTic9TIsVmOhNWcu1QMHFa+ysFpveE="]} 2025-02-03 08:25:50.661127+00 \N 4 \N \N \N \N
4423 fw717b773o5wtvw5c1de3kecw02ur0mz \N fw717b773o5wtvw5c1de3kecw02ur0mz 0 {"expire_date": ["None", "2025-02-17 08:25:55.221043"], "session_key": ["None", "fw717b773o5wtvw5c1de3kecw02ur0mz"], "session_data": ["None", ".eJyrVirJLMlJVbJScvUN8PGPdHVV0lFKKkpNTEkuKs1NKlayiq5WKi3KASrIKCkpKLbS108tKtBLSc1NzEspSU3O0MsvStcH6slLzAWZ4u4HZKfll-alKFmVFJWm1uoQoT0nPz0zD8kQMB_NnNhaAAPXOXM:1termF:Fl3lMUt2jSJI-SWrmzSGsRtLzO8VWCl73mYiImpcWZ0"]} 2025-02-03 08:25:55.222184+00 \N 6 122.176.134.248 \N \N \N
4424 lq7szz6wosqhq0zytjrbevdoozwgyice \N lq7szz6wosqhq0zytjrbevdoozwgyice 2 {"expire_date": ["2025-02-17 08:25:32.955269", "None"], "session_key": ["lq7szz6wosqhq0zytjrbevdoozwgyice", "None"], "session_data": [".eJyrVirJLMlJVbJScvUN8PGPdHVV0lFKKkpNTEkuKs1NKlayiq5WKi3KASrIKCkpKLbS108tKtBLSc1NzEspSU3O0MsvStcH6slLzAWZ4u4HZKfll-alKFmVFJWm1uoQoT0nPz0zD8kQMB_NnNhaAAPXOXM:1terls:cHFNOjPsV6cndG5I5RFBJ6xWsQiAYKSJyuN051HentA", "None"]} 2025-02-03 08:25:55.22682+00 \N 6 122.176.134.248 \N \N \N
4425 273 273 Admin 1 {"last_login": ["2025-02-03 08:24:38.307938", "2025-02-03 08:25:55.228268"]} 2025-02-03 08:25:55.22922+00 \N 4 122.176.134.248 \N \N \N
4426 chsoeih9wn2lpp0e23iosr4yt6z0llb6 \N chsoeih9wn2lpp0e23iosr4yt6z0llb6 0 {"expire_date": ["None", "2025-02-17 08:27:12.032539"], "session_key": ["None", "chsoeih9wn2lpp0e23iosr4yt6z0llb6"], "session_data": ["None", ".eJyNjbkOwjAQBf9l6xD3lhCVRcPVIpTCiZfEki9t1gQU5d8xFAhR0U0x894MbNkhSFD70-54VgoqaAm16Sj7dgR5mSGTK8LAnEYpBFKqDXodDGM31JF6UZqg_Wtleyh8jTkYkEwZl-qP3MXeBrEJeOe1QJ9cfCB-YHWzOH1dvO2fl2Z5Ap8wROM:1ternU:czEsaBgkGNIzFQK40aVk-soGQA8oo0M0yPe02vvVM34"]} 2025-02-03 08:27:12.034375+00 \N 6 122.176.134.248 \N \N \N
4427 mrq5d0aq3jrkn930oh20t8bacqcwn43a \N mrq5d0aq3jrkn930oh20t8bacqcwn43a 2 {"expire_date": ["2025-02-17 08:26:53.011012", "None"], "session_key": ["mrq5d0aq3jrkn930oh20t8bacqcwn43a", "None"], "session_data": [".eJyNjbkOwjAQBf9l6xD3lhCVRcPVIpTCiZfEki9t1gQU5d8xFAhR0U0x894MbNkhSFD70-54VgoqaAm16Sj7dgR5mSGTK8LAnEYpBFKqDXodDGM31JF6UZqg_Wtleyh8jTkYkEwZl-qP3MXeBrEJeOe1QJ9cfCB-YHWzOH1dvO2fl2Z5Ap8wROM:1ternB:EqzmPOOtWX0kxKodXhLjm1QI7Q5bt09YrhvvZsxlFRg", "None"]} 2025-02-03 08:27:12.041723+00 \N 6 122.176.134.248 \N \N \N
4428 273 273 Admin 1 {"last_login": ["2025-02-03 08:25:55.228268", "2025-02-03 08:27:12.047920"]} 2025-02-03 08:27:12.050793+00 \N 4 122.176.134.248 \N \N \N
4429 276 276 saurabh.goyal@growthnatives.com 1 {"password": ["9646668862", "pbkdf2_sha256$600000$7M0Lydc4qTguOU4cyjvnqW$vt2sXGXetNbUHs1p25ZqmCjJiKDyWmTd9Ysec3NHjj4="]} 2025-02-03 08:31:07.769166+00 \N 4 \N \N \N \N
4430 277 277 ishtpreet@growthnatives.com 1 {"password": ["8208472495", "pbkdf2_sha256$600000$V90kV0PreQAgXMXIypQ1so$BYOX4pW16B4qeF9pkYgWfyBSUxoSdhkGgXchHU+hN20="]} 2025-02-03 08:31:08.014061+00 \N 4 \N \N \N \N
4431 278 278 ankit.vas@growthnatives.com 1 {"password": ["7505878446", "pbkdf2_sha256$600000$bi4wb4TtjcSl3VS92c9GXf$Gcu5YftNXi2W6hTdWeOj7EM7Eet9EmgcQIrnrIxwbBg="]} 2025-02-03 08:31:08.280292+00 \N 4 \N \N \N \N
4432 279 279 shalini.chauhan@growthnatives.com 1 {"password": ["9873341163", "pbkdf2_sha256$600000$BJYKhnaF7I43rng7QL2IFB$Wsd6BoTf+b9tfbOqi1eY1afx9Ps9Di6H1YhJ22D7y50="]} 2025-02-03 08:31:08.522776+00 \N 4 \N \N \N \N
4433 280 280 deepak.garg@growthnatives.com 1 {"password": ["7837458110", "pbkdf2_sha256$600000$7y1o3cPWkGCuZEh2aVYzjR$5w7PJIh8asNCDgHymMj9imZU0W3FNIQxrF5J/OtxFu4="]} 2025-02-03 08:31:08.760039+00 \N 4 \N \N \N \N
4434 281 281 abhishek.panchal@growthnatives.com 1 {"password": ["8445464217", "pbkdf2_sha256$600000$mohnYoHBbKOx9xhwSBikyL$XiaTpu2FBwnj4XzbAmH68iFY7vRkH7Zd3vOVeKyZrX8="]} 2025-02-03 08:31:09.008988+00 \N 4 \N \N \N \N
4435 282 282 rahul@growthnatives.com 1 {"password": ["7888566265", "pbkdf2_sha256$600000$JjSMCrcG5ckJ6vYUjO8Pzv$SLtsDJYe4GQhVfXESuiyr8wYeYZSaMfgVXAW4ysnVac="]} 2025-02-03 08:31:09.253316+00 \N 4 \N \N \N \N
4436 283 283 amit.sangwan@growthnatives.com 1 {"password": ["7696156714", "pbkdf2_sha256$600000$gCAFRb9stcIO0ppfTXVi82$519kXE4QA+N02uFiO2pQS1MADjGiLnwBmLvn2qPHxXI="]} 2025-02-03 08:31:09.506021+00 \N 4 \N \N \N \N
4437 284 284 prem.sagar@growthnatives.com 1 {"password": ["6280985177", "pbkdf2_sha256$600000$IwYBuC4dELKOuk7M22EiqX$s3BioidBchedUf7ot4XTCSb+FaBPS+LChul6CVKXljM="]} 2025-02-03 08:31:09.750084+00 \N 4 \N \N \N \N
4438 285 285 shagun.sharma@growthnatives.com 1 {"password": ["8219018722", "pbkdf2_sha256$600000$D106XkCecjsRxfqEcPmJaQ$LiFzHo9sS/SKLKj6YFVrryx+1cOr/0TTn095aXY0Cc0="]} 2025-02-03 08:31:09.996256+00 \N 4 \N \N \N \N
4439 286 286 ashish.pathania@growthnatives.com 1 {"password": ["6239622196", "pbkdf2_sha256$600000$g48xMTBaTsadbw08y0QU6B$9uVZYwwflHSI0P0vSQnQN5TJpnMxnx56nhpO4NNRv9A="]} 2025-02-03 08:31:10.23073+00 \N 4 \N \N \N \N
4440 287 287 sahil.minhas@growthnatives.co 1 {"password": ["7807874149", "pbkdf2_sha256$600000$GrfsnaUHmeDyeuJxQxKAag$LPy0fKJijAa5DJK4kmnC7cHvM3ZSt4N+Xh9I9Hb8NzI="]} 2025-02-03 08:31:10.464635+00 \N 4 \N \N \N \N
4441 288 288 akansha.negi@growthnatives.com 1 {"password": ["7988327297", "pbkdf2_sha256$600000$dKsG34oLJo94RvpXbINzCb$x6Ql+Nc645TvabPXwpUT7BMmz7r7iTB2FmlRVLyOSMk="]} 2025-02-03 08:31:10.709804+00 \N 4 \N \N \N \N
4442 289 289 akash.pathania@growthnatives.co 1 {"password": ["8219921872", "pbkdf2_sha256$600000$wwJ8aTOg7Cl9jNY8YF1Mj2$ttakc3YSyp3SsryW2VmVpZ8yBcvBi7whOZCFrPN9eHM="]} 2025-02-03 08:31:10.944677+00 \N 4 \N \N \N \N
4443 290 290 rahul.kumar@growthnatives.co 1 {"password": ["8968661285", "pbkdf2_sha256$600000$pGCG88XKfFiDtoQ5XFgGfO$0Yq4R0t/mM3ul3SqB5mhTA5dttcGAhB+d4De3Ck5Ck4="]} 2025-02-03 08:31:11.189692+00 \N 4 \N \N \N \N
4444 291 291 hitakshi@growthnatives.co 1 {"password": ["6283135540", "pbkdf2_sha256$600000$UclFBvlYkWyF8ArTwghpxA$EkSkh9CjXG6PgV4GePdGFNC6tP5c93XzKtqURdCPdjU="]} 2025-02-03 08:31:11.441773+00 \N 4 \N \N \N \N
4445 292 292 mohit.arora@growthnatives.com 1 {"password": ["9871142500", "pbkdf2_sha256$600000$J8i59NnKinC2ySnV2gPwdt$b7fLLtqJK9gY7DqU6Ykq/S/ws+LSEl8AQrzf9AxJqA0="]} 2025-02-03 08:31:11.684026+00 \N 4 \N \N \N \N
4446 293 293 saurabh.sharma@growthnatives.co 1 {"password": ["8433123745", "pbkdf2_sha256$600000$gSlfFMRVeMfQKvlfCfDZrQ$udzeeQq9zZwd3TdZvxiYN5FgfcVZTdllezkWJyLtjHw="]} 2025-02-03 08:31:11.937865+00 \N 4 \N \N \N \N
4447 294 294 sachin.kumar@growthnatives.com 1 {"password": ["7055988174", "pbkdf2_sha256$600000$qVc8lHJvrj6FsrcVb60dLH$IV4Ms1ZANfyx2jZlWHBu8hz4p57P/LzHa0VabEktsvU="]} 2025-02-03 08:31:12.209543+00 \N 4 \N \N \N \N
4448 295 295 vashu.choudhary@growthnatives.co 1 {"password": ["9700002510", "pbkdf2_sha256$600000$f36R1U1miCt6H1xkowCczM$CNblwG66HC/UPI46HSWQf6bxNIM/ibczE0DrN16spfk="]} 2025-02-03 08:31:12.447447+00 \N 4 \N \N \N \N
4449 296 296 ashish.nagar@growthnatives.co 1 {"password": ["7017911138", "pbkdf2_sha256$600000$d2BJE9s9ZJZ9GlaCDOdaFm$EvBoVIkHBYIYCZh/YesFiNycYNojJWYPT9fcQcN4cME="]} 2025-02-03 08:31:12.683999+00 \N 4 \N \N \N \N
4450 297 297 simran.arora@growthnatives.com 1 {"password": ["7497023105", "pbkdf2_sha256$600000$aeHdrSo4ctQ5kcjZwIcfO2$fgaBjxGsPDg7+eHxxy3K/UPDIv6pYAp8kB3Lnhx4368="]} 2025-02-03 08:31:12.923189+00 \N 4 \N \N \N \N
4451 298 298 manu.jamwal@growthnatives.com 1 {"password": ["9459054824", "pbkdf2_sha256$600000$W8h11HsqlSdp1UMTtA1XOA$ZB234YybgjmzaAmLwstfGMpklUFTSI7xNI+DwgYgNII="]} 2025-02-03 08:31:13.219597+00 \N 4 \N \N \N \N
4452 299 299 abhi.panwar@growthnatives.co 1 {"password": ["7830367502", "pbkdf2_sha256$600000$G4bC1yV1aXFqsWmXXnsq9S$BfUITb72qTLEZvP4DPc33dhpRyYO5ABN80+LKbuJ/oQ="]} 2025-02-03 08:31:13.464945+00 \N 4 \N \N \N \N
4453 300 300 ashul.kumar@growthnatives.co 1 {"password": ["9805030517", "pbkdf2_sha256$600000$Rx8oW1YrX0tFbV3iCII0it$W11RD5kvP8Y9HpkE6EdRrJORHCT9MHi/s3NdNBmz1eY="]} 2025-02-03 08:31:13.716733+00 \N 4 \N \N \N \N
4454 301 301 manoj.pandey@growthnatives.co 1 {"password": ["8427270451", "pbkdf2_sha256$600000$oXx9T5ygm67BnYlyE9c3fd$PeZ570y+clkMlTKxGXd5qmynr7DRpMR4iHps1QxdcGE="]} 2025-02-03 08:31:13.970045+00 \N 4 \N \N \N \N
4455 302 302 lavish.rana@growthnatives.co 1 {"password": ["8580460491", "pbkdf2_sha256$600000$mi8sRIWld9lPdUOsCHWQbu$xsNPqYY6sSQ/vBLcGpR1hi1+MAu902irIr2w+IwNzok="]} 2025-02-03 08:31:14.22227+00 \N 4 \N \N \N \N
4456 303 303 deepak@gmail.com 1 {"password": ["8810088904", "pbkdf2_sha256$600000$bmyfCuJZZaYqxNO0gmxi52$9BIfaWzVG4WtrLZ6Ffy9OTbTvpfaO/EQBPtaJ0UNNDY="]} 2025-02-03 08:31:14.472457+00 \N 4 \N \N \N \N
4457 304 304 muskaan@growthnatives.com 1 {"password": ["9876963054", "pbkdf2_sha256$600000$CSf51NV7MFP9HKdxnTSt1f$+RGU5A3QLS5KnqM3o2BfRVJc+2DOyCUq23o60WF5uOg="]} 2025-02-03 08:31:14.734192+00 \N 4 \N \N \N \N
4458 305 305 ashish.malhoch@growthnatives.co 1 {"password": ["7018807229", "pbkdf2_sha256$600000$5nldHPAHtEcc16KLBl9SdI$cv6uAZ+H7C0v+I3j953v87K0Hymlk6v+YYleC7YZbbY="]} 2025-02-03 08:31:14.98095+00 \N 4 \N \N \N \N
4459 306 306 chandan.kumar@growthnatives.co 1 {"password": ["8219420068", "pbkdf2_sha256$600000$CfThc6hDR6v0W4DJrJME3l$gNbTf02J22EpOuVoEWdBczbJQoEebMoSBtbgW9PPm3w="]} 2025-02-03 08:31:15.271316+00 \N 4 \N \N \N \N
4460 307 307 purushotham.narayan@growthnatives.com 1 {"password": ["9888871974", "pbkdf2_sha256$600000$2aV5sPdYTqy56IhyNvPlWw$Qfg+R+/bWflW7hXE/2SKZEF036qztA4L3LAvl4+jTWw="]} 2025-02-03 08:31:15.507567+00 \N 4 \N \N \N \N
4461 308 308 ajit.singh@growthnatives.com 1 {"password": ["7669543525", "pbkdf2_sha256$600000$ak0WpNbBIOP1CjCYepGakx$erYMtWGysEEQMAMxFqSFMsg619kChCl7VfakGlHX2Qs="]} 2025-02-03 08:31:15.756727+00 \N 4 \N \N \N \N
4462 309 309 prashant.thakur@growthnatives.com 1 {"password": ["8628077971", "pbkdf2_sha256$600000$1FptRG8aQiMb3qHm43W4Kp$/joh/8hwFOhstBVtC5rmHeS698U6Dmx1BqfL3dtRDaE="]} 2025-02-03 08:31:16.00372+00 \N 4 \N \N \N \N
4463 310 310 prince.sharma@growthnatives.com 1 {"password": ["8909814023", "pbkdf2_sha256$600000$xq5pxSEVrynRgoE5zI4xr8$ElA3fBE6fpNwYxMcIyQpSqPLFCeFvoxfpqx8cIA0cDo="]} 2025-02-03 08:31:16.242534+00 \N 4 \N \N \N \N
4464 311 311 shivam.kumarpandey@growthnatives.co 1 {"password": ["7510019190", "pbkdf2_sha256$600000$PMOmDWfrp0loql74bystQ1$CLv39owXt4JFeX1yXblQI7rRn7MR16I1cuKNZIbPTFY="]} 2025-02-03 08:31:16.515187+00 \N 4 \N \N \N \N
4465 312 312 aditi.vashisth@growthnatives.com 1 {"password": ["9870620994", "pbkdf2_sha256$600000$HhvMaTPdZ8190dLQqkzzcc$t8fbcf8WrwxvnAnucRjlGvzK1B9BCnjZPwFe/gTeIwk="]} 2025-02-03 08:31:16.760221+00 \N 4 \N \N \N \N
4466 313 313 mayank.sharma@growthnatives.com 1 {"password": ["9084738444", "pbkdf2_sha256$600000$Y1nFFU63UpXafJ8viPEk5S$QZFWeAHtKnTXHC34avGq7Flrh3rORyzTxK7vHMm6Imo="]} 2025-02-03 08:31:17.03778+00 \N 4 \N \N \N \N
4467 314 314 sharmistha.dey@growthnatives.com 1 {"password": ["9674728747", "pbkdf2_sha256$600000$kkdwg3zutZ95gNhSkchQ2S$PNfzjgAaWv9pgCnKGGM590u8bHxrAzp58NsfsY0UaQk="]} 2025-02-03 08:31:17.274875+00 \N 4 \N \N \N \N
4468 315 315 ravina.garg@growthnatives.com 1 {"password": ["9569273433", "pbkdf2_sha256$600000$qQcTH7M6TbuRuw6LXuopvV$UunSYFXxDXYNCGge9RyetAiQ0FJWqmhOA2BHlCPQKZY="]} 2025-02-03 08:31:17.559494+00 \N 4 \N \N \N \N
4469 316 316 abhishek.pathania@growthnatives.com 1 {"password": ["9805012796", "pbkdf2_sha256$600000$Kvdythez22kqYS1WmAVhyu$oqwEv5KrjYf+sfx5Rqzci9e5R29LWhhd9x8O/mghgU4="]} 2025-02-03 08:31:17.809591+00 \N 4 \N \N \N \N
4470 317 317 shubham.chaudhary@growthnatives.com 1 {"password": ["7409747819", "pbkdf2_sha256$600000$LFwQtKQIb13v4ioYcIeJeB$Hbo3BQgoGkVdx75X1gs1TyjO85yUL1C6LUO/wpqPhLQ="]} 2025-02-03 08:31:18.061171+00 \N 4 \N \N \N \N
4471 318 318 paras.sharma@growthnatives.com 1 {"password": ["8351924004", "pbkdf2_sha256$600000$beiP1m3iO962UefBd8sN6S$KClxHRQQayIGSWv4La7JzWp8mhjttnWikNf02iGfSBM="]} 2025-02-03 08:31:18.336514+00 \N 4 \N \N \N \N
4472 319 319 harpuneet.singh@growthnatives.com 1 {"password": ["8557982101", "pbkdf2_sha256$600000$KqcNuRsSaXJ6wWwpqX2gjp$pMZUFyIf2tCtuwXTnP63vu9TFHO2/HIMi81OAPTx5g8="]} 2025-02-03 08:31:18.615313+00 \N 4 \N \N \N \N
4473 320 320 karan.kaushal@growthnatives.com 1 {"password": ["7536048939", "pbkdf2_sha256$600000$2PtPdCUqVyy1BiCb3ft2iE$QSp1ZFbqMdyD16D53coQytN83y21awxB2j6vWna4dxE="]} 2025-02-03 08:31:18.871666+00 \N 4 \N \N \N \N
4474 321 321 jaskaran.singh@growthnatives.com 1 {"password": ["9317846806", "pbkdf2_sha256$600000$vSnxy74cW7pNSLfASDuazK$WuwgVpPgvUfhlk0NJ5NXgayooeyBHl0+uXYElMsqcEE="]} 2025-02-03 08:31:19.106472+00 \N 4 \N \N \N \N
4475 322 322 sneha@growthnatives.co 1 {"password": ["8629015644", "pbkdf2_sha256$600000$Q71fgAr8HUoaLF2LwdCatA$C//pAAIMy48o+M8wb+0G0YaUisc98rfMmCr5SQ/R6Qc="]} 2025-02-03 08:31:19.347457+00 \N 4 \N \N \N \N
4476 323 323 ananta@growthnatives.co 1 {"password": ["7508700629", "pbkdf2_sha256$600000$CKfoQkjEXgAqaxLCj2TSfv$p56AEMQrDibGHDW+R5MfuOUki446HWnIb2LwovNqfwk="]} 2025-02-03 08:31:19.593687+00 \N 4 \N \N \N \N
4477 10 10 DriverViewed object (10) 0 {"id": ["None", "10"], "user": ["None", "273"], "viewed": ["None", "settings"]} 2025-02-03 08:32:00.660828+00 273 20 122.176.134.248 \N \N \N
4478 3 3 AttendanceGeneralSetting object (3) 1 {"time_runner": ["True", "False"]} 2025-02-03 08:36:28.825935+00 273 147 122.176.134.248 \N \N \N
4479 chsoeih9wn2lpp0e23iosr4yt6z0llb6 \N chsoeih9wn2lpp0e23iosr4yt6z0llb6 2 {"expire_date": ["2025-02-17 08:37:15.624738", "None"], "session_key": ["chsoeih9wn2lpp0e23iosr4yt6z0llb6", "None"], "session_data": [".eJylUl2L1DAU_StDHnzxbidtvtqBRXQZRXR3FhF8kGVIm8y0mqYlTcVlmP--NzqwM-KDIOTh5uScc3NPciCxi86SFVnf3i--bD59eH_3drO42dzef1x_XhMgdbDaNGHu64msvh7IHByy2xjHabVc2jBmxvbam2ibNhvCfokar_tk-e4O690we0NWMcz2CP8g1zFab7Rv7JnTM_h_jiMWnd9ftcMcpjP_C_yPFg9AtnqO7XaebNh2CJNCMXKB1rr5bpOCmG_a74esGXwMXZ0lSnY6nbLbwVj35sS9MGj11KJaiFzVOaVFxStGlRKKNrmujcl3jJpaG1lTKXNTGVnyQkpZ7Xa0oLIWpS2aIqUzWWebaM22GfpR-8eUnnN_Odh2foq_Il0dyDP5tXOLm9MOSIeDnKU7d1f6h446TDhhv9Rjt3yVIrxG1cuT6kUadx9SgtcB32Ho0Sfan_Fk_rtVZ1POKU0_O3fEyDsXbcDr2X50w6O16buJEmQOqgTOQHFgEhQFgSsHpqAUwClw5CiQBUgsECmgzEEwYBWUDErEOUgGkoISIDhwAVJCidscOBoioQLOQRSgFAgJvAJWgkArBRy7Iwe7VyDQEGnq4fgEDGwB7g:1terxD:mWR3Q1K21ww7IRVd2ckTu8le2yRTrYrpKUDOj_DDNns", "None"]} 2025-02-03 08:37:16.030611+00 273 6 122.176.134.248 \N \N \N
4480 redttklh3g41ldvmf8q2krfpmu3z91ad \N redttklh3g41ldvmf8q2krfpmu3z91ad 0 {"expire_date": ["None", "2025-02-17 08:37:16.061125"], "session_key": ["None", "redttklh3g41ldvmf8q2krfpmu3z91ad"], "session_data": ["None", "eyJ0aXRsZSI6IlBlcmZvcm1hbmNlIn0:1terxE:yleUExB_TguYTb0t3G9KEQtpQ2xS0-n3HPQ6bdg0njs"]} 2025-02-03 08:37:16.065408+00 \N 6 \N \N \N \N
4481 f15n2vwc59ba86lr9zobo7njtg6y9qjp \N f15n2vwc59ba86lr9zobo7njtg6y9qjp 0 {"expire_date": ["None", "2025-02-17 08:37:16.069101"], "session_key": ["None", "f15n2vwc59ba86lr9zobo7njtg6y9qjp"], "session_data": ["None", "eyJ0aXRsZSI6IlBlcmZvcm1hbmNlIn0:1terxE:yleUExB_TguYTb0t3G9KEQtpQ2xS0-n3HPQ6bdg0njs"]} 2025-02-03 08:37:16.07064+00 \N 6 \N \N \N \N
4482 m5hlddcbs8zb9999idkl9lwetgccmjon \N m5hlddcbs8zb9999idkl9lwetgccmjon 0 {"expire_date": ["None", "2025-02-17 08:37:16.519571"], "session_key": ["None", "m5hlddcbs8zb9999idkl9lwetgccmjon"], "session_data": ["None", "eyJ0aXRsZSI6IkFUVEVOREFOQ0UifQ:1terxE:g-WwKoWcWkyWto708RRJZJSpVVYVHPFMBps5b2QE5-0"]} 2025-02-03 08:37:16.52146+00 \N 6 \N \N \N \N
4483 vibqbq2fj6nlmorkk8bvkbpk8gqd08l7 \N vibqbq2fj6nlmorkk8bvkbpk8gqd08l7 0 {"expire_date": ["None", "2025-02-17 08:37:16.594536"], "session_key": ["None", "vibqbq2fj6nlmorkk8bvkbpk8gqd08l7"], "session_data": ["None", ".eJyNjbsKwzAMAP9FcxLthtKxW3-gdJAtJS6NH8gyFEL-vaFLoVO3G-64DbwKcdCefAN326DrCg6iWW0OUbROLIkym4Q4FV0QBsiU5JAu14Pn0jODM-2yD3_ka1keGc9ZXnbCmhoytegLKY-zCHsKz7EZWW_f0af5ed33NwqEQbc:1terxE:jj56WN8jDC5mBwiUeNoIY_Cw5vvPP-iFp6PjoXc9POo"]} 2025-02-03 08:37:16.597228+00 \N 6 \N \N \N \N
4484 ty3zcpnogerrlgxaznkq38jojhtbm1a1 \N ty3zcpnogerrlgxaznkq38jojhtbm1a1 0 {"expire_date": ["None", "2025-02-17 08:37:16.689412"], "session_key": ["None", "ty3zcpnogerrlgxaznkq38jojhtbm1a1"], "session_data": ["None", ".eJyrVkoqSk1MSS4qzU0qVrKKrlYqLcpRslLKKCkpKLbS108tKtBLSc1NzEspSU3O0MsvStdX0lHKS8xNBSpy9wOy0_JL81KUrEqKSlNrdYjQnpOfnpmHZAiYj2ZObC0Aisk0Aw:1terxE:G2b1KKQGO18A30q159LaBnTeA6ck56oUkNvfMunZvwg"]} 2025-02-03 08:37:16.691917+00 \N 6 \N \N \N \N
4485 ugfqacbz82kkohrfkktsc3duzwxdvi90 \N ugfqacbz82kkohrfkktsc3duzwxdvi90 0 {"expire_date": ["None", "2025-02-17 08:37:16.706921"], "session_key": ["None", "ugfqacbz82kkohrfkktsc3duzwxdvi90"], "session_data": ["None", ".eJyNjbsKwkAQAP9l61y2PxBLO39ALO5yayLei32AEvLvBhvBym6KGWaFyBTSxFaigL-sYJzBw6LaxSMS9zFRCTUpTcvYeEYYoIZCu3Q673xrVhN4ZaNt-CPPbb5XPFZ66gF7EUxBltg4uQe9HJNYVica1OR7-kQ_s-v2BlU2QkY:1terxE:RM-LmbZ15XjV8w91oG_H800OlLmqoSglAb8SYETE2Yk"]} 2025-02-03 08:37:16.708504+00 \N 6 \N \N \N \N
4486 qx8ruuca4gyr6t36fy7u9173meqigx9x \N qx8ruuca4gyr6t36fy7u9173meqigx9x 0 {"expire_date": ["None", "2025-02-17 08:37:30.048608"], "session_key": ["None", "qx8ruuca4gyr6t36fy7u9173meqigx9x"], "session_data": ["None", ".eJyrVkoqSk1MSS4qzU0qVrKKrlYqLcpRslLKKCkpKLbS108tKtBLSc1NzEspSU3O0MsvStdX0lHKS8xNBSpy9wOy0_JL81KUrEqKSlNrdYjQnpOfnpmHZAiYj2ZObC0Aisk0Aw:1terxS:S02YC8IZMgOgS0GppDmgpU7VJwXVr-nXrErT1Hg7Z7s"]} 2025-02-03 08:37:30.049731+00 \N 6 122.176.134.248 \N \N \N
4487 ty3zcpnogerrlgxaznkq38jojhtbm1a1 \N ty3zcpnogerrlgxaznkq38jojhtbm1a1 2 {"expire_date": ["2025-02-17 08:37:17.103425", "None"], "session_key": ["ty3zcpnogerrlgxaznkq38jojhtbm1a1", "None"], "session_data": [".eJyrVkoqSk1MSS4qzU0qVrKKrlYqLcpRslLKKCkpKLbS108tKtBLSc1NzEspSU3O0MsvStdX0lHKS8xNBSpy9wOy0_JL81KUrEqKSlNrdYjQnpOfnpmHZAiYj2ZObC0Aisk0Aw:1terxF:LE29v_Rl44eZv0P8HDmpwvcsMEnP4aev6ZWfZ6SOQd4", "None"]} 2025-02-03 08:37:30.053936+00 \N 6 122.176.134.248 \N \N \N
4488 273 273 Admin 1 {"last_login": ["2025-02-03 08:27:12.047920", "2025-02-03 08:37:30.055502"]} 2025-02-03 08:37:30.056591+00 \N 4 122.176.134.248 \N \N \N
4489 324 324 priya.dashore@growthnatives.com 1 {"password": ["7987947875", "pbkdf2_sha256$600000$aSzkifEtJCGAvI7dBFDZEd$vZcAVp2WyrQcQEYlLLUopcUcupCtnwYS4u09LIBpug0="]} 2025-02-03 08:40:56.346054+00 \N 4 \N \N \N \N
4490 325 325 prateek.khatri@growthnatives.com 1 {"password": ["9813875699", "pbkdf2_sha256$600000$32feZOF3T46DCR41fL4nkC$zfYpPVX8mbUGVgXf/fXmfpXQ9HMnOKne1m/wScgyIVY="]} 2025-02-03 08:40:56.58768+00 \N 4 \N \N \N \N
4491 326 326 harsh.pathak@growthnatives.com 1 {"password": ["7837730917", "pbkdf2_sha256$600000$MKjvxwYJduCWVFT4PGIhM2$1r/XsGhNcWnDZyNTK2HXqcqVmNMtRvaLi5K5QcN+SM0="]} 2025-02-03 08:40:56.832887+00 \N 4 \N \N \N \N
4492 327 327 naman.katariya@growthnatives.co 1 {"password": ["8826754298", "pbkdf2_sha256$600000$V4YlPMXyCrMVqQhkGIDjs6$EP5DA89GwDdBHm9WbHIReFKp4fREFzVzVjXgf6lwpQM="]} 2025-02-03 08:40:57.083938+00 \N 4 \N \N \N \N
4493 328 328 leepakshi.saini@growthnatives.co 1 {"password": ["8283993740", "pbkdf2_sha256$600000$pH6OGXAwn9oiXanv2ohuXt$zVXRNeI1vV0nAe0ew+QwzhAZY6uyEoR6MIGUAb4N5aM="]} 2025-02-03 08:40:57.351924+00 \N 4 \N \N \N \N
4494 329 329 barirah.roshin@growthnatives.co 1 {"password": ["8284972560", "pbkdf2_sha256$600000$cL2pRazViej55OsqvfArRm$CCOsDaHbAioy8r2FEhj+Lx0mXNNraHx7nR/tLiBm73M="]} 2025-02-03 08:40:57.597579+00 \N 4 \N \N \N \N
4495 330 330 sachin.manocha@growthnatives.com 1 {"password": ["8168754677", "pbkdf2_sha256$600000$oPgltQVd1sGiAaPoi84sMV$RVpRm45r9blg90FnkMKMp6CZ322Vyii+2m5Sc0mvxP8="]} 2025-02-03 08:40:57.833957+00 \N 4 \N \N \N \N
4496 331 331 irfan.ahmad@growthnatives.com 1 {"password": ["9599844780", "pbkdf2_sha256$600000$UKd8tHrNZvUG6fXgujnB9V$MAhDmxLcM5S0eLdegzffs+E6bmpIG44NDybU5idEjVQ="]} 2025-02-03 08:40:58.074264+00 \N 4 \N \N \N \N
4497 332 332 aditi.chauhan@growthnatives.com 1 {"password": ["7901745462", "pbkdf2_sha256$600000$gCr3SJVQj6GLEP9nBOy4St$NmS/Cwc+kvUkgpXh5FQIYJSqpnBYYb/uCdFt/py2vQE="]} 2025-02-03 08:40:58.318318+00 \N 4 \N \N \N \N
4498 333 333 ankita.rana@growthnatives.com 1 {"password": ["9418331088", "pbkdf2_sha256$600000$oRUc5cFACNIE6nDT9IrzgN$I+JLXNhcBSFZVXsQ+1vCyxpgbIo9k9lDymZn/eJ4d4Q="]} 2025-02-03 08:40:58.555205+00 \N 4 \N \N \N \N
4499 334 334 rommel.datta@growthnatives.co 1 {"password": ["9650878438", "pbkdf2_sha256$600000$6v3sSO30M8rExsQkkyGECb$mIQEeR2bk+6Ie9y/Q3/Shb+qM7Ljh5LLs9BT/ZO+qs8="]} 2025-02-03 08:40:58.797681+00 \N 4 \N \N \N \N
4500 335 335 chandan.deep@growthnatives.co 1 {"password": ["6239723360", "pbkdf2_sha256$600000$CKmrOlHbxM8K2OH9CwPPY6$MePNk6NKsOdEi52iwfNSatW9qKSZVF2RzO70WYORKoc="]} 2025-02-03 08:40:59.041944+00 \N 4 \N \N \N \N
4501 336 336 komal@networkon.io 1 {"password": ["7807122139", "pbkdf2_sha256$600000$jkBHIjl9GELR8P1gn5LPEr$KHTKL3vCHiU3uY+qY7u1Shf5kBmVCqoZ4d2h/S4B2u8="]} 2025-02-03 08:40:59.304452+00 \N 4 \N \N \N \N
4502 337 337 dhruv.jindal@networkon.io 1 {"password": ["8146999751", "pbkdf2_sha256$600000$g22SK21xlWuIgl7rGiMBQf$2CorGpSLkoIAM9us6Yjs+IgfmuOeA1bQgRlCg8Nx/xU="]} 2025-02-03 08:40:59.553691+00 \N 4 \N \N \N \N
4503 338 338 yuvraj.walia@growthnatives.co 1 {"password": ["9915683594", "pbkdf2_sha256$600000$SQLHRHEnmFBnuihNvSZInA$lYL4Lv6MkgPjarkb+lKsTWJbCnOL7IzTnMp2qJQXHiA="]} 2025-02-03 08:40:59.806573+00 \N 4 \N \N \N \N
4504 339 339 saksham.bhatia@growthnatives.co 1 {"password": ["8146938734", "pbkdf2_sha256$600000$tslFkr3x9QNxAA5BcYMxg5$cnW4Lsf/t7XNQpmlSyTgIaUDur6GZFWjKYZDgEMYhNQ="]} 2025-02-03 08:41:00.066976+00 \N 4 \N \N \N \N
4505 340 340 abhisek.dogra@growthnatives.co 1 {"password": ["8091035358", "pbkdf2_sha256$600000$YYTugcJRZo1s2q57YDZrmm$4OrghOh6l7+oOSPnYP97S3XhqsMW0lSAeKevT6mBEQ0="]} 2025-02-03 08:41:00.308659+00 \N 4 \N \N \N \N
4506 341 341 keshav.sharma@growthnatives.co 1 {"password": ["8437827151", "pbkdf2_sha256$600000$LD5TZoPDdLUND39tZUACmK$vj7zx6QM5h8v49IF79UIsj8q/o8Ve+drnGyojL4rAj8="]} 2025-02-03 08:41:00.545204+00 \N 4 \N \N \N \N
4507 342 342 vipin.kumar@diggrowth.com 1 {"password": ["9805816550", "pbkdf2_sha256$600000$PVxRfD16agQjx71dxRIky6$rbFpS1/XnNMq11t5wyDs6dzOLIJIn+7GBv+8aXA6HDU="]} 2025-02-03 08:41:00.781557+00 \N 4 \N \N \N \N
4508 343 343 aman.thakur@growthnatives.com 1 {"password": ["6283660852", "pbkdf2_sha256$600000$SKobkkMI8m9UoyFVpyVo7f$dxRIya9UzvhVSOVI+ZwXGIQNarm/GatI6D5va2Rgg90="]} 2025-02-03 08:41:01.0193+00 \N 4 \N \N \N \N
4509 344 344 anshu.gupta@growthnatives.co 1 {"password": ["7033928753", "pbkdf2_sha256$600000$mx7jhV05YRXed8yuApyFjQ$PhI+4jABwZeXNwOwJcxlrylWYIrYvhL1RzTc5ZNPFgE="]} 2025-02-03 08:41:01.276015+00 \N 4 \N \N \N \N
4510 345 345 angshu.das@growthnatives.co 1 {"password": ["7896848253", "pbkdf2_sha256$600000$U1gPs98IgvuYjGSJzlzMzR$8D/GO57JsxeJ8JOsCkX++/Y8YfTwvvDNsd0HF+KCOlc="]} 2025-02-03 08:41:01.547328+00 \N 4 \N \N \N \N
4511 346 346 sourin.manna@growthnatives.co 1 {"password": ["6283013257", "pbkdf2_sha256$600000$74qN8KuAXREiFeI8vTlwWc$SQEz1srk53ClgaIKSbURu3yT3YtqsW4SS0c936zhxZ8="]} 2025-02-03 08:41:01.786582+00 \N 4 \N \N \N \N
4512 347 347 janak.magotra@diggrowth.com 1 {"password": ["9888639991", "pbkdf2_sha256$600000$HziNQDVzhpPGKUHIuo5SZB$S88GaGGXm/ZbDMNXR0x6AG+iHOwHjVDVeJRfe7vKsiI="]} 2025-02-03 08:41:02.021927+00 \N 4 \N \N \N \N
4513 348 348 santosh.mandal@networkon.io 1 {"password": ["7084251069", "pbkdf2_sha256$600000$1xF7FbaFeOWDNJJUo8DZNk$ypYHqCzp96a7VC+0syYnzf7MwxmRHV0XnKnApaStDa0="]} 2025-02-03 08:41:02.267755+00 \N 4 \N \N \N \N
4514 349 349 yogesh.sharma@growthnatives.co 1 {"password": ["9499450301", "pbkdf2_sha256$600000$dpcnnMLmuNaVUZZJKNmEHa$j8AaYiNRtj7IeI4yen4sO12d3lwJkEo3ij5wCqlyPA0="]} 2025-02-03 08:41:02.50773+00 \N 4 \N \N \N \N
4515 350 350 kashish@growthnatives.co 1 {"password": ["8968738022", "pbkdf2_sha256$600000$C8oUxNTcDlHeJjKIq5IVrk$BVgqC1dSC8vNRZu0m6R1cYk3RLqsTvgKqUUn8K2zSvU="]} 2025-02-03 08:41:02.805237+00 \N 4 \N \N \N \N
4516 351 351 sanya.midha@growthnatives.co 1 {"password": ["7988066597", "pbkdf2_sha256$600000$a9TanQNqgi6tv2qnEL4eoF$du4GGDlkvOTe4Kmz2GEVwVFRk1dja60td3MmU2dQxKs="]} 2025-02-03 08:41:03.051125+00 \N 4 \N \N \N \N
4517 352 352 kritika@growthnatives.co 1 {"password": ["9530803224", "pbkdf2_sha256$600000$go1aBmG7cR7FPeh6ul9iTS$Y4pBq7nvYiJQsosCj+ZPeckMSTToEXyAlz3tjULbirM="]} 2025-02-03 08:41:03.294323+00 \N 4 \N \N \N \N
4518 353 353 gurkirat.singh@networkon.io 1 {"password": ["7837293695", "pbkdf2_sha256$600000$18qv8IBYLAXnKADSUWd6W0$SnT5nSUjiqHWjEAqTFyVDX+B3xJN50fB8rAKVMRpi8E="]} 2025-02-03 08:41:03.534834+00 \N 4 \N \N \N \N
4519 354 354 durgesh.kumar@growthnatives.co 1 {"password": ["8901010408", "pbkdf2_sha256$600000$LzcojvRHvacULkc1DNJkKY$lpFl6DLoiA4V3v+/qWRlBLKGqCmi03RNgWMI+L7DeXA="]} 2025-02-03 08:41:03.773784+00 \N 4 \N \N \N \N
4520 355 355 arpit.babharoia@growthnatives.co 1 {"password": ["7876124979", "pbkdf2_sha256$600000$mhNvTbj4sI5ItwbZKXhgP8$mlh44h9cnsa3GnGfdAkDFTeP34dv5rJoP0kU0H/Dx3U="]} 2025-02-03 08:41:04.017876+00 \N 4 \N \N \N \N
4521 356 356 vishal.chauhan@growthnatives.com 1 {"password": ["9816060517", "pbkdf2_sha256$600000$vgrzlH6Cl2ll9UERYFwQO4$F4sbwmWxRjfSm4obVVbSiGTw4qSmLhMqI+Uuked/etc="]} 2025-02-03 08:41:04.264788+00 \N 4 \N \N \N \N
4522 357 357 sourabh@growthnatives.com 1 {"password": ["8054270064", "pbkdf2_sha256$600000$NAvBpCmU2SXutyQUbr7rFz$zWU9t4SXeFn6Ir81qkmmSf6nrKAbrMRf2yB7Dc0boZo="]} 2025-02-03 08:41:04.514647+00 \N 4 \N \N \N \N
4523 358 358 malvika.chauhan@diggrowth.com 1 {"password": ["8988971670", "pbkdf2_sha256$600000$Nb8St3hwBKs30XzBtEFwyc$amljC2Fx7Cl+JUnCN04jjudHLA4bJBVkgMPCrZHKpYg="]} 2025-02-03 08:41:04.778779+00 \N 4 \N \N \N \N
4524 359 359 manpreet.kaur@growthnatives.com 1 {"password": ["9988463460", "pbkdf2_sha256$600000$SWhQpQBQ7drLmGwirxAxFO$QWceydehNk9Tut0Kb63qQ9PYc8tIzdiGu/esAAsfPL0="]} 2025-02-03 08:41:05.027779+00 \N 4 \N \N \N \N
4525 360 360 jashandeep.sukhija@growthnatives.com 1 {"password": ["6280683501", "pbkdf2_sha256$600000$EzZd25OdqGH4AC2GVgZdrd$bE75rNlurScwHX+lolGsbOtn1FfbUk7J3SkLJqE4KIA="]} 2025-02-03 08:41:05.266731+00 \N 4 \N \N \N \N
4526 361 361 parmveer.singh@growthnatives.com 1 {"password": ["9729332327", "pbkdf2_sha256$600000$ON7P7rqhryzrd5hxCOMIar$eGMAQ3bjvoBD06mvMRdGERD6kIGU/asT367o+Ew1m3s="]} 2025-02-03 08:41:05.5081+00 \N 4 \N \N \N \N
4527 362 362 balpreet.brar@growthnatives.com 1 {"password": ["9888134302", "pbkdf2_sha256$600000$XcJh6oQa6Zy8otMGqDohDS$4lh7mdpXoBbidk30kfu2ywbO20bFo/06SgO7Md11F1A="]} 2025-02-03 08:41:05.742568+00 \N 4 \N \N \N \N
4528 363 363 gurpreet@growthnatives.co 1 {"password": ["7717579199", "pbkdf2_sha256$600000$ETdEtE6maS4OnLGoBzdcsW$jqwS6NN71MbpP+9cv7yo63hVT0kWta4T0UsZFS6LUQc="]} 2025-02-03 08:41:05.978921+00 \N 4 \N \N \N \N
4529 364 364 nishant.singh@growthnatives.co 1 {"password": ["8171807325", "pbkdf2_sha256$600000$5I2O7kvFz6qKLTAcvZl8R2$rGZZaoOkd9Jvw0wcrSS9u9IyMIwLe/vXHMC0eaGo2+A="]} 2025-02-03 08:41:06.222312+00 \N 4 \N \N \N \N
4530 365 365 kartik.thakur@growthnatives.co 1 {"password": ["8626874938", "pbkdf2_sha256$600000$e4YZRsjLN5rtv4lCG4E93q$zeFAJM8tTZ2MFMsW4vt173l1b6Dtik9FDiLzVLRC1Lc="]} 2025-02-03 08:41:06.462676+00 \N 4 \N \N \N \N
4531 366 366 bhag.singh@growthnatives.co 1 {"password": ["8767000098", "pbkdf2_sha256$600000$N05xZf58rYGSxUqU0O4bvH$dVJvVwd4uYl8U8i7d4CKFgVkiVIhqHUuSV2nwttCGwk="]} 2025-02-03 08:41:06.700605+00 \N 4 \N \N \N \N
4532 367 367 gurpreet.singh@growthnatives.co 1 {"password": ["9988844049", "pbkdf2_sha256$600000$Bql722XBpyLxkZlyN19o1Q$VxhjjP/EC/mUEhNnKbyI2dsakB/kaHzoij/2G9ONmlg="]} 2025-02-03 08:41:06.937667+00 \N 4 \N \N \N \N
4533 368 368 arshpreet.kaur@growthnatives.co 1 {"password": ["7837329530", "pbkdf2_sha256$600000$mFefOTFNMfLjvi8iCp7KNf$MP5rwXLBo5Lw7VDgH5f4Dv40XQkkI8ZsfKTF/UnkcJg="]} 2025-02-03 08:41:07.174682+00 \N 4 \N \N \N \N
4534 369 369 inayat.kaur@growthnatives.co 1 {"password": ["7740041702", "pbkdf2_sha256$600000$QvGxMXa3n55n02Sc8bysCF$KDgUQqJiSzrWJqi5fwumrenR/nIoWRSt2udSUilBkAI="]} 2025-02-03 08:41:07.416676+00 \N 4 \N \N \N \N
4535 370 370 praneet.dhillon@growthnatives.co 1 {"password": ["8427104126", "pbkdf2_sha256$600000$tklJ2kf2hSPtlzYS4uknZP$d7Qw4dCxis9dxDt0CscqANz2I7qRYYZgqCtq+WId2PY="]} 2025-02-03 08:41:07.651868+00 \N 4 \N \N \N \N
4536 371 371 nikita.uppal@growthnatives.co 1 {"password": ["7986758719", "pbkdf2_sha256$600000$sk49tWLMtEag6DF8P58Jvi$nPi3HU+oshGtweQzTM8JqAL9v0M/4hkw0R5o9OVGFTQ="]} 2025-02-03 08:41:07.894881+00 \N 4 \N \N \N \N
4537 372 372 rama.sharma@growthnatives.com 1 {"password": ["7754840872", "pbkdf2_sha256$600000$nodSTIWIBL3Td84deCJDLY$oKCFCL1XaXY85nEjfebbet0GUZyH9yNd24LcYAAm/J8="]} 2025-02-03 08:41:08.1366+00 \N 4 \N \N \N \N
4538 373 373 nandini.sharma@growthnatives.co 1 {"password": ["9988066149", "pbkdf2_sha256$600000$Ne2gbswe8yQ5TZ1TRJIOHD$HkNW5QenNBWBPzjuUGIKxq9QEHettDQbE2Np9bQYyuA="]} 2025-02-03 08:41:08.371787+00 \N 4 \N \N \N \N
4539 374 374 diksha.sharma@growthnatives.co 1 {"password": ["8146369145", "pbkdf2_sha256$600000$zZjtvfsdtjXrOr2MewN5Fw$ueCx4URs/emMm9VnzU0kPqgRontDmRR947F+Z60zd4Y="]} 2025-02-03 08:44:03.365033+00 \N 4 \N \N \N \N
4540 375 375 gurvinder.singh@growthnatives.co 1 {"password": ["8219644003", "pbkdf2_sha256$600000$CKw8krWfLD318KaLDl9Wcj$GF2GS9eSOkHfn0G4Yd14IMWDu1NQni8pAgkPGY9tD9w="]} 2025-02-03 08:44:03.622552+00 \N 4 \N \N \N \N
4541 376 376 tarun.kumar@growthnatives.co 1 {"password": ["7652922230", "pbkdf2_sha256$600000$uExhkusNHWsBkUb4x7J5NY$ifUdEq5hrKwACchwuxsr/xFvAuoof+MVWIM+MtCg+rs="]} 2025-02-03 08:44:03.86361+00 \N 4 \N \N \N \N
4542 377 377 era.bhawra@growthnatives.co 1 {"password": ["9872992289", "pbkdf2_sha256$600000$UJ8Ay95cNtctaZR6JMm1XE$bxKIU9FG5aKSOOa53oR6SVeUtznfpdQJkQQMv+scZqQ="]} 2025-02-03 08:44:04.120868+00 \N 4 \N \N \N \N
4543 378 378 shiromani.bhatti@growthnatives.co 1 {"password": ["8427050520", "pbkdf2_sha256$600000$I5Y9SFDKnt56CJqxtYA1yG$yQ4FgT6EHE3Jlp1JOJpseDEPkJ8NOy6VsuxEG/xJppQ="]} 2025-02-03 08:44:04.359587+00 \N 4 \N \N \N \N
4544 379 379 kirandeep.singh@growthnatives.co 1 {"password": ["6239692925", "pbkdf2_sha256$600000$rzjLXIucX22ZGgGPmL4Ay5$+9Bxgliz8SmjV/Im6iwpdzf8/bDd7OHiNZZrG/qkwEg="]} 2025-02-03 08:44:04.596397+00 \N 4 \N \N \N \N
4545 380 380 sayam.sehgal@growthnatives.co 1 {"password": ["7504444496", "pbkdf2_sha256$600000$zSLDixtuyGWm9420PFRtHl$MSEP+g2RuAR1SVjBAqfvFG3GVXg8N7vwRwFKpHfaYcw="]} 2025-02-03 08:44:04.830436+00 \N 4 \N \N \N \N
4546 381 381 ishan.shaurya@growthnatives.co 1 {"password": ["9501113466", "pbkdf2_sha256$600000$ngVZeFR2VEH4Y4tn9iGYLO$FZnnAhgyATBX61LDxFEPmnurevWqFkgT170aBcyOUVA="]} 2025-02-03 08:44:05.066728+00 \N 4 \N \N \N \N
4547 382 382 gaganphagwara1999@gmail.com 1 {"password": ["7889174973", "pbkdf2_sha256$600000$zDto66rhv6ZRZE7pHhSDkJ$B2JE1/nNMjBgDUT2R/7+eyB1BVRdGcrcFLjozove8Zo="]} 2025-02-03 08:44:05.304628+00 \N 4 \N \N \N \N
4548 383 383 jagritsharma2001@gmail.com 1 {"password": ["9592519929", "pbkdf2_sha256$600000$Cfjg3SCKEVWwNd8yl41YSu$Cq1wN9I5pKE4xaVYDdv60EVMdI3IeOvG/dXkDAbUg2A="]} 2025-02-03 08:44:05.54272+00 \N 4 \N \N \N \N
4549 384 384 shivesh.sharma@growthnatives.com 1 {"password": ["9888941227", "pbkdf2_sha256$600000$cq9756H3N2filgYFgzCf48$x1k1zNlPnulPaXyGyCqJc9I850COm70dhlMMuOrXz68="]} 2025-02-03 08:44:05.837084+00 \N 4 \N \N \N \N
4550 385 385 satwinder.singh@growthnatives.com 1 {"password": ["9041200588", "pbkdf2_sha256$600000$xhaNuEw3LeXsfP0WbaQ4tk$oAiwSU5ari76uuRF3LVjoZwQYhpR/8W6vWlhY99szC8="]} 2025-02-03 08:44:06.076359+00 \N 4 \N \N \N \N
4551 386 386 rahul.sachdeva@growthnatives.com 1 {"password": ["9711312394", "pbkdf2_sha256$600000$t1RVbcx2ckMh8nKrBJvHPT$KOliuTy9Pgkpf4x4CzRhvkx+neNo+znXKcI8QDCxVzc="]} 2025-02-03 08:44:06.337868+00 \N 4 \N \N \N \N
4552 387 387 sameer.pawar@growthnatives.co 1 {"password": ["9820734462", "pbkdf2_sha256$600000$yEDrToFGjXj7laU8pr2agd$rIrXkCLCQXfRT2fabRhxD0SvoTmbvxj+7Tyx8qX1/WU="]} 2025-02-03 08:44:06.577083+00 \N 4 \N \N \N \N
4553 388 388 abeer.aulakh@growthnatives.com 1 {"password": ["7837991840", "pbkdf2_sha256$600000$xp2mwGvFclMQTQkFx8ugP5$ILDWZMlv5U/WRYFXAb1hxYnJ07ToC8qNi38iMfaQaKc="]} 2025-02-03 08:44:06.851762+00 \N 4 \N \N \N \N
4554 389 389 arpit@growthnatives.com 1 {"password": ["8178118474", "pbkdf2_sha256$600000$u7e6pAy8JgHbqp8mm0yfHD$Ojokx0V7tKM8Jz5PPqqa1+eWOuNTnIJqqQD6DugfvIQ="]} 2025-02-03 08:44:07.110949+00 \N 4 \N \N \N \N
4555 390 390 tushar@growthnatives.com 1 {"password": ["9176030896", "pbkdf2_sha256$600000$VWPNDeWBgGBCqpaqGxd2wA$tcgqEwFlnW43xu/N0f32K6G1zKb9JVTCKkqQQTpG0vU="]} 2025-02-03 08:44:07.390142+00 \N 4 \N \N \N \N
4556 391 391 geeta.patial@growthnatives.com 1 {"password": ["8427663376", "pbkdf2_sha256$600000$rIdJQKjLvts2CBKCFbkapv$2vvDgFBfIqo+sh2ktJLkJB7rUGVJkR72z8U97mly6YQ="]} 2025-02-03 08:44:07.640953+00 \N 4 \N \N \N \N
4557 392 392 akhil.yadav@growthnatives.com 1 {"password": ["8169969217", "pbkdf2_sha256$600000$cr1q2IYjA9ZGefukk28g7B$xRb0vaA/DYumnoC/FyGIUyfi4anbaz4rcwONKmiKEKM="]} 2025-02-03 08:44:07.890576+00 \N 4 \N \N \N \N
4558 393 393 rukman@growthnatives.com 1 {"password": ["9501063643", "pbkdf2_sha256$600000$ZWpTyt3dF2b8xVPwcIiG0N$BF6wgi3o2L6/jH6GQ9VTwjDx5gw1oamo7JWKCN/hjZw="]} 2025-02-03 08:44:08.129817+00 \N 4 \N \N \N \N
4559 394 394 sumeet@growthnatives.com 1 {"password": ["7837173739", "pbkdf2_sha256$600000$lv4eQITDt4d7jg9OnLHxJQ$VwDfjnOrKAmHFMuvZWTZ2fIXf4PuucQVHLDqpBiLmNk="]} 2025-02-03 08:44:08.366162+00 \N 4 \N \N \N \N
4560 395 395 shailendra@growthnatives.com 1 {"password": ["9501325665", "pbkdf2_sha256$600000$ibYrBoDHNQcxnq0ROMLwKp$uxdLCg/BH03tZKgo5OiOK5hUd9UqzzMriadG5CsJLC4="]} 2025-02-03 08:44:08.602689+00 \N 4 \N \N \N \N
4561 396 396 sakshi.arora@growthnatives.com 1 {"password": ["8054864904", "pbkdf2_sha256$600000$Q5hLXDzTCxgxGkWRxq2rkM$yOYuxCWCB5pXdf5DZaDztuJXtRj2y2owRWHXzq+jOIM="]} 2025-02-03 08:44:08.84092+00 \N 4 \N \N \N \N
4562 397 397 gaurav@growthnatives.com 1 {"password": ["9873341163", "pbkdf2_sha256$600000$feL8PYp4RvERU7YZ0U07UA$DIjS0XBCDCb6+50XR1f44I0b+RIihXuT4Mwrr0KuBpI="]} 2025-02-03 08:44:09.077758+00 \N 4 \N \N \N \N
4563 398 398 akshit.issar@networkon.io 1 {"password": ["7988419209", "pbkdf2_sha256$600000$XAbV984TmERgs4eDDq5HcH$K1Y7OS3zfPjRBsAr1nIkNwT8ZLwZtN303JsW9Kn3khs="]} 2025-02-03 08:44:09.318408+00 \N 4 \N \N \N \N
4564 399 399 abhijeet@networkon.io 1 {"password": ["9646496924", "pbkdf2_sha256$600000$GByJF9j21CgPPk7Vg3tnFa$SqQH31Oarhih0sSgtxiOpHHvsLTPKEIjKoQ0BPb/9sw="]} 2025-02-03 08:44:09.594723+00 \N 4 \N \N \N \N
4565 400 400 geetanjali@networkon.io 1 {"password": ["6239257283", "pbkdf2_sha256$600000$0pJpUBDcoa7PDHj7TtQ8m4$I/aHYKGhYTqasbKFNIxz++n6GQybml5dMkb/tvbIcKo="]} 2025-02-03 08:44:09.863382+00 \N 4 \N \N \N \N
4566 401 401 anju.yadav@growthnatives.com 1 {"password": ["8218485326", "pbkdf2_sha256$600000$x7q5kYVgLZNEQbmK8Ibp8q$EJgq9NYq9ITswPqGPGXXyFuZbuoCNsCD7Zx1h7MgYes="]} 2025-02-03 08:44:10.098416+00 \N 4 \N \N \N \N
4567 402 402 shakshi.thakur@growthnatives.com 1 {"password": ["8427753911", "pbkdf2_sha256$600000$Bi9Wa37f6J1av39VPSZEim$oF5rfl6E3xAMxh5n0HTTg1Wfxk2HXr+0m9XRnsmeF8k="]} 2025-02-03 08:44:10.341239+00 \N 4 \N \N \N \N
4568 403 403 gulshan.kumar@growthnatives.com 1 {"password": ["7018152072", "pbkdf2_sha256$600000$gMIjZzTBiW4wn45n7fJd78$gIImt9CWs772sOIhwm4e456rJ9dEmVR2uc2Xh34fglE="]} 2025-02-03 08:44:10.577003+00 \N 4 \N \N \N \N
4569 404 404 tripat.raj@growthnatives.co 1 {"password": ["9877784710", "pbkdf2_sha256$600000$TOLz46amdys01I9kMTXJxH$boAYckbJxG1MYN2g5AjYK7DOsesRvh+6pvzdaNrsZoY="]} 2025-02-03 08:44:10.818343+00 \N 4 \N \N \N \N
4570 405 405 nakul.sharma@growthnatives.co 1 {"password": ["9855927761", "pbkdf2_sha256$600000$yjnqyLp4zfrGIqEbghPz7W$OOqGa4gL/6cpgJnQI12+BZUWP7sroVinWuY0NqI9QDw="]} 2025-02-03 08:44:11.069853+00 \N 4 \N \N \N \N
4571 406 406 daksh.jethi@growthnatives.co 1 {"password": ["7710712914", "pbkdf2_sha256$600000$44noCPvADFAVYPPR4W2gyr$M4jqVK14DmuNHI/k3a466AADy/MVRYlPzAx+cjyVGMw="]} 2025-02-03 08:44:11.324963+00 \N 4 \N \N \N \N
4572 407 407 pushpa@growthnatives.co 1 {"password": ["9914878345", "pbkdf2_sha256$600000$dW00Fv5RJe3a7G6vdTthr7$0un2+onjfCwXNJTn8eeZsjZAb3GnzbdOZWXEfpbh5jk="]} 2025-02-03 08:44:11.558335+00 \N 4 \N \N \N \N
4573 408 408 abhishek@growthnatives.com 1 {"password": ["9803835483", "pbkdf2_sha256$600000$kpghC2DBFCrGTcCBTGU2Kr$lrfodrFwqtGppR43wm8tNEdhxcoL4pihj4LuYeDtPyA="]} 2025-02-03 08:44:11.792156+00 \N 4 \N \N \N \N
4574 409 409 ravideep.singh@growthnatives.co 1 {"password": ["9888595029", "pbkdf2_sha256$600000$NRySGkmj3O7uAIdWlSft9F$YpphRxN6Rx/BlAYbENP8Ph/17x4swq87cIpfcE624Ls="]} 2025-02-03 08:44:12.031092+00 \N 4 \N \N \N \N
4575 410 410 devesh.ojha@growthnatives.co 1 {"password": ["6264547030", "pbkdf2_sha256$600000$BuzOQmPDYaitJDB5vXmnYn$Q9DdB0T4RsVvoH7AwJtwsx7378hr0mdlJyuQFQxQZvM="]} 2025-02-03 08:44:12.27107+00 \N 4 \N \N \N \N
4576 411 411 vedaant.sooden@growthnatives.co 1 {"password": ["9779549921", "pbkdf2_sha256$600000$8yTBLNU0ixIAJVbDcqbevf$jIXhGQEdL1SBtstqwEeX1XpnQKnWAg7ZrCe300tQW9Y="]} 2025-02-03 08:44:12.509795+00 \N 4 \N \N \N \N
4577 412 412 harsh@growthnatives.co 1 {"password": ["7015675459", "pbkdf2_sha256$600000$ZryKYAUi6VJDXiEhKoCHBc$aR85MvnKnGRXWWyuH1J61tK0+9qWsErzcvBXQQeNrz4="]} 2025-02-03 08:44:12.752674+00 \N 4 \N \N \N \N
4578 413 413 aman.gota@growthnatives.co 1 {"password": ["9815911294", "pbkdf2_sha256$600000$kSwCsJZRvfUY0Wd5oqgWVx$dOKplnjvCBS7IpTQ3l0TQbVByxa1KIC6jvmyV83dM7o="]} 2025-02-03 08:44:13.004993+00 \N 4 \N \N \N \N
4579 414 414 rahul.sharma@growthnatives.com 1 {"password": ["9958405906", "pbkdf2_sha256$600000$uiYRlmBCj0ac05GUjllISn$F+3/hoy5vyxm6seX2jRbc0C9EoweB1OWwJLGz3tHPlQ="]} 2025-02-03 08:44:13.246837+00 \N 4 \N \N \N \N
4580 415 415 kps@growthnatives.com 1 {"password": ["9465530687", "pbkdf2_sha256$600000$4Ak0rQlXE292E0mDRqOidu$Oge+IoDtFb5ABy9EwKR5Ce6NG1NuEuYxaEXyfoGedK0="]} 2025-02-03 08:44:13.486472+00 \N 4 \N \N \N \N
4581 416 416 vardaan.pandit@growthnatives.com 1 {"password": ["7018605361", "pbkdf2_sha256$600000$TgleRiDTuzTGEE6yfUeSTE$sfI3afe2CXYLyn7uCA8lOKD8kf/zggNg0+lyoCvewrI="]} 2025-02-03 08:44:13.726215+00 \N 4 \N \N \N \N
4582 417 417 dilbag.singh@growthnatives.com 1 {"password": ["7973600739", "pbkdf2_sha256$600000$iJe9aabHbugVcVcgYyIig9$PVyhzcqJuSwHynla8iAnpVooQaZ9A694+XRyXoHfO9E="]} 2025-02-03 08:44:13.964907+00 \N 4 \N \N \N \N
4583 418 418 prernak@growthnatives.com 1 {"password": ["9876180993", "pbkdf2_sha256$600000$2ujoXyZnvY8OHD3HMDqgv5$q+YxBGakslCnlV7AmlZxtEwepUvFNkGLySbmUSANlxM="]} 2025-02-03 08:44:14.202241+00 \N 4 \N \N \N \N
4584 419 419 chandan.madaan@growthnatives.com 1 {"password": ["9988553234", "pbkdf2_sha256$600000$cCsj4OqGXURcXw2Jch8mkV$e8brz+KlO/we6CZa72GxycjQUC7Z7XpdN3bEN4D5B/4="]} 2025-02-03 08:44:14.439993+00 \N 4 \N \N \N \N
4585 420 420 sam.bhatt@gowthnatives.com 1 {"password": ["7579463973", "pbkdf2_sha256$600000$iPabTJHNnDHpalAQzgef2f$/qUrJwrxn93v0o4r6WbzYPGbZL2hDNN7OoM8NQerE20="]} 2025-02-03 08:44:14.689814+00 \N 4 \N \N \N \N
4586 421 421 hershey@growthnatives.com 1 {"password": ["7579274566", "pbkdf2_sha256$600000$YWmFBy6mMwjozeK6d41W9d$6ILfq19iNvD4hQ5TkiLDEQ5nsmfmCQIPTnJzbEScHFw="]} 2025-02-03 08:44:14.92921+00 \N 4 \N \N \N \N
4587 422 422 sehajpreet.singh@growthnatives.com 1 {"password": ["8437791279", "pbkdf2_sha256$600000$V7DGWgyyAftJIqgTtGvneK$o8Uk3lAP8RQr04hZslQyweISpbIraOZvy9fN/zcECnI="]} 2025-02-03 08:44:15.167959+00 \N 4 \N \N \N \N
4588 423 423 ishika.kashyap@growthnatives.co 1 {"password": ["9997186809", "pbkdf2_sha256$600000$pA0cSOWcD0avGHJ1aeSIaJ$28oQhaYqZEnAH4WBtqiqFbAP+zqVIfpSILCYyu9I6e4="]} 2025-02-03 08:44:15.402877+00 \N 4 \N \N \N \N
4589 424 424 rohan@growthnatives.co 1 {"password": ["9001970396", "pbkdf2_sha256$600000$j5AztQpf2C5zifoBLuMxtF$bIFyv2m3C48oAeLZrAovOhPqSzNt4+CMcOQbrPGX2KY="]} 2025-02-03 08:46:13.738259+00 \N 4 \N \N \N \N
4590 425 425 sonu.yadav@growthnatives.co 1 {"password": ["8950701580", "pbkdf2_sha256$600000$e2BOvNQSXqOtvs2JcgpXYg$LvLil8f1QgWe/9jS0Edc03rg5RU3BzuJzO8plQSzrHU="]} 2025-02-03 08:46:14.00248+00 \N 4 \N \N \N \N
4591 426 426 suraj.rawat@growthnatives.com 1 {"password": ["9815852496", "pbkdf2_sha256$600000$8JS5CdjBlquJ4GfsPLlPwZ$qyRusi8p2I+f2fRh9bsU+LWqNkoPZJB+xuI4D0fh68s="]} 2025-02-03 08:46:14.241904+00 \N 4 \N \N \N \N
4592 427 427 shaini.agnihotri@growthnatives.com 1 {"password": ["8010700009", "pbkdf2_sha256$600000$CGpbi37bI3Ey2Ntaf1xTHb$Yw/8r7hEX9lHcbPjMndfGHBEbvnHxTcJUpemGxLsoYo="]} 2025-02-03 08:46:14.514599+00 \N 4 \N \N \N \N
4593 428 428 mahesh.nirmal@growthnatives.com 1 {"password": ["95616 86644", "pbkdf2_sha256$600000$pOpkAziTSJrj830RT5F9u0$tPh9QTcehcGnVvZWtzPkJQ/ckI31mFuDcLLC4R6x3Us="]} 2025-02-03 08:46:14.789674+00 \N 4 \N \N \N \N
4594 429 429 brijesh.kumar@growthnatives.com 1 {"password": ["8591860748", "pbkdf2_sha256$600000$P6XVgAAM5EVrJSJ3hCaWeZ$GNOnkgeA+6yWPl8qYfIrfLngC4ehNCJ9Ny+sE704Igw="]} 2025-02-03 08:46:15.030762+00 \N 4 \N \N \N \N
4595 430 430 kamal.sharma@growthnatives.co 1 {"password": ["7888706297", "pbkdf2_sha256$600000$bf2iMS5h3UN298xpFhzFl5$ecwAuyWP7u8nJnR2sviT8NcCBnDLUf84qm3n8U/rd+8="]} 2025-02-03 08:46:15.2666+00 \N 4 \N \N \N \N
4596 431 431 simranjit.kaur@growthnatives.co 1 {"password": ["8283072947", "pbkdf2_sha256$600000$cq1S0r8HoAefi1A0zfeVmf$6QQ6QlRJy0MVdLiwO92IZ1QGDZyVlHecb+dj9crAwOU="]} 2025-02-03 08:46:15.500879+00 \N 4 \N \N \N \N
4597 432 432 mohd.sufiyan@growthnatives.com 1 {"password": ["8392970293", "pbkdf2_sha256$600000$0Ej4mx9JudDi7Rs7HhUnZ9$v/53y03EJHkBsgNtSljRje9WNrB/T5bi8BBHuH++rKM="]} 2025-02-03 08:46:15.735512+00 \N 4 \N \N \N \N
4598 433 433 ishika.middha@growthnatives.com 1 {"password": ["6280943120", "pbkdf2_sha256$600000$NoL2PO91su7njT0RFtG4o7$ceg0ZZAM+9+6bMRUkQE7UXrTWIfF45LEF3X0MCZ+16U="]} 2025-02-03 08:46:15.974741+00 \N 4 \N \N \N \N
4599 434 434 arpit.goyal@growthnatives.com 1 {"password": ["9463691121", "pbkdf2_sha256$600000$ZEMxPTa6kfu9keHMcZ80BA$xZIEtILC8/tNXa6VA/juBrTo3+pwEh6ID0sOkuWs61A="]} 2025-02-03 08:46:16.214596+00 \N 4 \N \N \N \N
4600 435 435 akshita.khanna@growthnatives.co 1 {"password": ["7018172339", "pbkdf2_sha256$600000$SbiUttRA75DvF3sMnHskPA$Mpx8/MMGYxSkL5wQKi3vBHHoWIPFcxmFh+ZFPB7UB0Y="]} 2025-02-03 08:46:16.45386+00 \N 4 \N \N \N \N
4601 436 436 kaushik.dhiman@growthnatives.com 1 {"password": ["7206659493", "pbkdf2_sha256$600000$QTXdQhh6j45loO36lHTT4P$lo2bPk47ZSxbhlABCsyQ4pXaV+ZEDuy73JSI+hO8w/o="]} 2025-02-03 08:46:16.692355+00 \N 4 \N \N \N \N
4602 437 437 ramandeep.sbagga@growthnatives.com 1 {"password": ["9463207778", "pbkdf2_sha256$600000$py6lly62sVMTMrYwvbSZe0$npNzikPmPQ9SeE2T1deC5xkSpsLZfWgFCHJcsaN7VE0="]} 2025-02-03 08:46:16.960016+00 \N 4 \N \N \N \N
4603 438 438 manica.kwatra@growthnatives.co 1 {"password": ["6239575362", "pbkdf2_sha256$600000$wWy95sR3nJ95Uni2pRV56y$zNUbu2HOSB5V0FfbvGwYmAa6e2sVYlYWyullnlD+HVs="]} 2025-02-03 08:46:17.199617+00 \N 4 \N \N \N \N
4604 439 439 vikrant.baranwal@growthnatives.co 1 {"password": ["8604586175", "pbkdf2_sha256$600000$eoiJf5bTrIplTsn6dTZovS$YqzrIYRvECdqhrIo76qYLvIF1D5+Joo0hduno2QzOu8="]} 2025-02-03 08:46:17.445718+00 \N 4 \N \N \N \N
4605 440 440 deepinder.singh@growthnatives.com 1 {"password": ["6280252423", "pbkdf2_sha256$600000$ObTBFmNEZIXEtBdSwJ3u4p$hAcTcb0tABmpkMLt/mvUajyHjhR3oQO9+Kx0jPbirSg="]} 2025-02-03 08:46:17.72335+00 \N 4 \N \N \N \N
4606 441 441 shreya.narula@growthnatives.co 1 {"password": ["8168440236", "pbkdf2_sha256$600000$QEDyE2fSuJQXbSsQI0c8Wn$3bAsxoMHWReGg2AUV8HthyzRoEH7gXbGNKeURiHMOqE="]} 2025-02-03 08:46:17.958247+00 \N 4 \N \N \N \N
4607 442 442 dilraj.singh@growthnatives.co 1 {"password": ["6283112505", "pbkdf2_sha256$600000$tU3gDMXNRzX0ftI8MgDxa4$ae77IIBaqW428jAa8JBly7RwbX25QZpk81NHQnuqkxw="]} 2025-02-03 08:46:18.193596+00 \N 4 \N \N \N \N
4608 443 443 varun.kashyap@growthnatives.co 1 {"password": ["9646828566", "pbkdf2_sha256$600000$CiTzbhQSTMtSw5QTvLz4oQ$CE6yt1soSYWSUuqcm6lpxihPiA6P9ARdpW45DyaVUZA="]} 2025-02-03 08:46:18.444471+00 \N 4 \N \N \N \N
4609 444 444 ekamonkar.singh@growthnatives.co 1 {"password": ["9914272468", "pbkdf2_sha256$600000$Z3TPPW1p4oQjwzzlkit6Fd$B/gEyYtArasIT0yuliwhvHzTeSoXwF1bMycEYKhOjgs="]} 2025-02-03 08:46:18.689839+00 \N 4 \N \N \N \N
4610 445 445 anmol.sharma@growthnatives.co 1 {"password": ["9015369450", "pbkdf2_sha256$600000$4Rkj8Zb2WOkosz1oDFRuZz$MTmK+KrXETK8dcC4ocF1t8/bxUXzFW9Zpc5j7ahbehU="]} 2025-02-03 08:46:18.923915+00 \N 4 \N \N \N \N
4611 446 446 abhinav.dass@growthnatives.com 1 {"password": ["9910446750", "pbkdf2_sha256$600000$u5MudsUiTRnr5o1wrdCvi6$kG2PXLNokQOMncrNOtv1QSMXLEw9wQP78B4wsSiC8JE="]} 2025-02-03 08:46:19.158503+00 \N 4 \N \N \N \N
4612 447 447 arshdeep.singh@networkon.io 1 {"password": ["7652822441", "pbkdf2_sha256$600000$6JZet4x6N0VFFLfJAkFIwz$dkf+siCnE3AErGf+Pv02NnuHlOGQ5T2jpIiTY8SDLYM="]} 2025-02-03 08:46:19.39491+00 \N 4 \N \N \N \N
4613 448 448 karamjeet@diggrowth.com 1 {"password": ["7888349253", "pbkdf2_sha256$600000$GEmzgESRWSI3QMOvF5VjYZ$tt/lztXnQ9cSEtr75IsD8fs8zLLFLaKveGTPhINh7u0="]} 2025-02-03 08:46:19.629416+00 \N 4 \N \N \N \N
4614 449 449 rehmat@growthnatives.com 1 {"password": ["9877708879", "pbkdf2_sha256$600000$wrHokCAj1CBYjrtDiZYbUY$RCIIBusFfp97nSZ8ibbsFy0PyOZSVjNoNI1812hgJ+c="]} 2025-02-03 08:46:19.8636+00 \N 4 \N \N \N \N
4615 450 450 ashish.chauhan@growthnatives.com 1 {"password": ["7015701852", "pbkdf2_sha256$600000$x49F6YslfvWMGewnRAonMX$lnD1yRoOkh1AyMa0stFxD6koF80da2lpj0ZPByWx4yk="]} 2025-02-03 08:46:20.098956+00 \N 4 \N \N \N \N
4616 451 451 mehak.hasija@growthnatives.com 1 {"password": ["9888964251", "pbkdf2_sha256$600000$vzSDafv1UIRIw77noxpbpj$KPrhoAK2583YW17C1ipUEjwrjQcLTKWwwDxm7xoXTpY="]} 2025-02-03 08:46:20.340274+00 \N 4 \N \N \N \N
4617 452 452 baljinder.singh@growthnatives.com 1 {"password": ["7888766751", "pbkdf2_sha256$600000$r3vphPbQuNrwatvdDs9TVX$sv3e5TwIFbpD1qE9A8p2IIt36logapE0TAdA1eBtiwc="]} 2025-02-03 08:46:20.577082+00 \N 4 \N \N \N \N
4618 453 453 nikhil.singh@growthnatives.com 1 {"password": ["7984270506", "pbkdf2_sha256$600000$yJVe8o9zmMtGSgJ7kOsHub$Xdfywc5tQciAGwb3EZqGCz9U8dqPbG8nDBOTYYfCTwA="]} 2025-02-03 08:46:20.814532+00 \N 4 \N \N \N \N
4619 454 454 anant.chaudhary@growthnatives.com 1 {"password": ["9045525301", "pbkdf2_sha256$600000$EqlFOZOfrYjn6XaZrAE9KT$cBnG2KsjVRaGJUbghRe++40YTyF/59vtpvC4x4QGnVw="]} 2025-02-03 08:46:21.048226+00 \N 4 \N \N \N \N
4620 455 455 gaurav.saini@growthnatives.co 1 {"password": ["9779948442", "pbkdf2_sha256$600000$aMmXyJ8VB0AUBVVwO0LoyV$1M6ZBPs3cVlap3L2aw7uKBCF1c62NEQ072ENcHImKRA="]} 2025-02-03 08:46:21.281738+00 \N 4 \N \N \N \N
4621 456 456 gurdev.singh@growthnatives.co 1 {"password": ["7837254487", "pbkdf2_sha256$600000$p8zDDOGijP8N4FCFJHolnl$Fjj1X8E34orrhQXtu+6QimoGLECtEnkTuJWINL+cJqY="]} 2025-02-03 08:46:21.5321+00 \N 4 \N \N \N \N
4622 457 457 ajay.sharma@growthnatives.co 1 {"password": ["9996647188", "pbkdf2_sha256$600000$wrErXKQgQzoXqzwv06K41e$O5yJQjG+ZRfUkyi++Q+BC6pYI7P2VdKhmhPdcl4MO0w="]} 2025-02-03 08:46:21.765977+00 \N 4 \N \N \N \N
4623 458 458 akanksha.thakur@growthnatives.com 1 {"password": ["8219416256", "pbkdf2_sha256$600000$q04VZxmryZoyULQML6fA4X$0urX00q0acj1OTy7hde5x84RhWYeYuhn2xrkvea78O8="]} 2025-02-03 08:46:22.00233+00 \N 4 \N \N \N \N
4624 459 459 ankit.chauhan@growthnatives.com 1 {"password": ["7018983305", "pbkdf2_sha256$600000$u6CznL5Wy1pGfsDra2fgvO$tbzHFRgNZ3mSAwB6StGKtVv2lERJqlW+RbfXcWE6RD4="]} 2025-02-03 08:46:22.237112+00 \N 4 \N \N \N \N
4625 460 460 aastha.mittal@growthnatives.com 1 {"password": ["9417700688", "pbkdf2_sha256$600000$coj7fOrTdCnzKfkubBxoMu$0YK7OGKCxOjP8FcLPPUSERDEGCJErSVP+tXjNSO41rc="]} 2025-02-03 08:46:22.483475+00 \N 4 \N \N \N \N
4626 461 461 mohit.dharwal@growthnatives.com 1 {"password": ["7018706182", "pbkdf2_sha256$600000$FbmfmOyQwiOrYaqpqZTDW4$4Ai+WuY1ijhopfu7HG86iYlaFzgi0uwA4ZPeZL7nRWg="]} 2025-02-03 08:46:22.717714+00 \N 4 \N \N \N \N
4627 462 462 anupriya.goyal@growthnatives.com 1 {"password": ["7696864709", "pbkdf2_sha256$600000$IcuIG3554yVTy43OGw9Trx$hLEBmU9blcirPNqTzd+TmYs0Z3Yq1ipyJkNcY9Olk+M="]} 2025-02-03 08:46:22.960348+00 \N 4 \N \N \N \N
4628 463 463 aarohi.tiwari@growthnatives.com 1 {"password": ["8619534403", "pbkdf2_sha256$600000$JpgcbhkBiAq7Juv5tkcdpN$LEWsPENZJh6UUllE2iTP8Z178j7ahsjxA4GVe5PwFZc="]} 2025-02-03 08:46:23.2435+00 \N 4 \N \N \N \N
4629 464 464 rishab.sharma@growthnatives.co 1 {"password": ["8437668215", "pbkdf2_sha256$600000$8CDsM4X5mPicjJCg7Lq4cv$OGevujAvHgDuzDQnMZEZejkWW+be1r/GgP4PiSKsN0o="]} 2025-02-03 08:46:23.480035+00 \N 4 \N \N \N \N
4630 465 465 rajnish.rajan@growthnatives.co 1 {"password": ["9599027220", "pbkdf2_sha256$600000$9ktSRKhHkvpXvuO1r36Wb3$4clirkVzJ2cUFckcaMkN7o7Oin3HDJxyrDUTU5Ml47w="]} 2025-02-03 08:46:23.737445+00 \N 4 \N \N \N \N
4631 466 466 shivam.joshi@growthnatives.co 1 {"password": ["8295599979", "pbkdf2_sha256$600000$ayNAMt7RjrkmQFdRfdtcl6$Vm6JjsJPcMPlzFA7NWMgumHm0mIKggFacnQ0F27YQJ8="]} 2025-02-03 08:46:23.988216+00 \N 4 \N \N \N \N
4632 467 467 piyush.bageshwar@growthnatives.co 1 {"password": ["8857850257", "pbkdf2_sha256$600000$YabxmGhiKpbzNqQvnuPvtT$oCZZCc4UguY994d+pXM8tsf+e0mAb6EYnk1I/NBnYbs="]} 2025-02-03 08:46:24.22219+00 \N 4 \N \N \N \N
4633 468 468 shivam.kathpal@growthnatives.com 1 {"password": ["7082066278", "pbkdf2_sha256$600000$ah6gDpiSrbNzKCPOUBGl2X$GWapfLkSrPriHHkeRqKjIMYt0u4GVWQV6fG3BBjKGTM="]} 2025-02-03 08:46:24.462261+00 \N 4 \N \N \N \N
4634 469 469 hitika.saini@diggrowth.com 1 {"password": ["9041940617", "pbkdf2_sha256$600000$jfoAY3bZHH8HZZhByfCynv$v06aHB+0OCkO771OPxWpSpm7TDVaEA2mOmVRAnnlke0="]} 2025-02-03 08:46:24.70438+00 \N 4 \N \N \N \N
4635 470 470 harshika.chadha@growthnatives.com 1 {"password": ["9818369333", "pbkdf2_sha256$600000$OqjJ0w0sDHd0li6iMtxNJB$OU7vhluep8jFQAi3wgYKR3eXiQGtvlx+SHPwUhlHBdY="]} 2025-02-03 08:46:24.956999+00 \N 4 \N \N \N \N
4636 471 471 anuradha.misra@growthnatives.com 1 {"password": ["8800628689", "pbkdf2_sha256$600000$rRq2rWTTKfirZcXRpCsURG$Dgdo6fug6OliPI3/Gr9sybZz1XRxl6bmgC4r6F9Yi3Y="]} 2025-02-03 08:46:25.205328+00 \N 4 \N \N \N \N
11407 201 201 Deepinder Singh (GN0604) - ... - (Development - GN) 1 {"reporting_manager_id": ["None", "288"]} 2025-02-04 08:02:14.459946+00 273 55 122.176.134.248 \N \N \N
4637 472 472 anjali.gupta@growthnatives.com 1 {"password": ["9643841015", "pbkdf2_sha256$600000$8P5HTnRgXwjaynwsffNNPW$JatgaOWlPBRz44IkaAQe/kn+3D4g0T25hwtZbW7Sbms="]} 2025-02-03 08:46:25.451499+00 \N 4 \N \N \N \N
4638 473 473 vaibhav.kumar@growthnatives.com 1 {"password": ["8840916662", "pbkdf2_sha256$600000$DP7XKz4RrngbwglI06A2PU$tRDxzSSp/bUoMNfg5NlgPNI5LrfDAZb2Zhv1MHBityU="]} 2025-02-03 08:46:25.695474+00 \N 4 \N \N \N \N
4639 474 474 sukhpreet.kaur@growthnatives.com 1 {"password": ["7986723188", "pbkdf2_sha256$600000$DqSNLwZqzQznPHxhYH39Z5$7KuOetG+ncU8vDaMv8Bb5kl9pvSEDIpba5nZRSojT4I="]} 2025-02-03 08:47:54.106826+00 \N 4 \N \N \N \N
4640 475 475 shahzad.musawwir@growthnatives.com 1 {"password": ["9646662755", "pbkdf2_sha256$600000$VBcG0fRHxnhz3W3SyYdOrZ$lonVdCdVOdDNwaY9mZ8FHUpJk+kdLT0iBmM441owQec="]} 2025-02-03 08:47:54.354399+00 \N 4 \N \N \N \N
4641 476 476 pawan.joshi@growthnatives.co 1 {"password": ["9780355989", "pbkdf2_sha256$600000$SgRwlkLBytCf3rpo69xBJJ$f34tqy3JPOPlpn4DF2YI4bRPBiJV9h7NYtPVBbo8Koo="]} 2025-02-03 08:47:54.588607+00 \N 4 \N \N \N \N
4642 477 477 bhavya.soni@growthnatives.co 1 {"password": ["9877993301", "pbkdf2_sha256$600000$Rqg0kC9P6uYIvD0FC8iaBZ$gz6z9ysEKH5+Bxo9++Nfwmp56iG6xyDZxoTDfTfiR5A="]} 2025-02-03 08:47:54.822955+00 \N 4 \N \N \N \N
4643 478 478 mohit.kumar@growthnatives.com 1 {"password": ["7988379394", "pbkdf2_sha256$600000$d4uNjd3fAutQ6Y2YeOK4Ax$coqUl9K4E/T0tSVfXswIJ6oT1jePmY6aIqNfMErJnZk="]} 2025-02-03 08:47:55.066096+00 \N 4 \N \N \N \N
4644 479 479 rahul.verma@growthnatives.co 1 {"password": ["9058655799", "pbkdf2_sha256$600000$zlBFqx8wGJCShL1hTITLcA$LNpupCQ95wVFwsxDa00isgteoKRE5hrfefRUYwj0WdQ="]} 2025-02-03 08:47:55.300484+00 \N 4 \N \N \N \N
4645 480 480 nitish.gupta@growthnatives.co 1 {"password": ["6239445320", "pbkdf2_sha256$600000$TSneuq0J66PUdCK8LFnLd1$fj9QkTaIRkSOyq2DytN+1s06LfwL2ODNcMzCmYJ16zg="]} 2025-02-03 08:47:55.541161+00 \N 4 \N \N \N \N
4646 481 481 akanksha.dass@growthnatives.com 1 {"password": ["79017 08893", "pbkdf2_sha256$600000$iwf6SjHjSGnwEbhsmbppNG$0iwv6evVfyJOiA8EJnV4vXAE/+QwWHJqs9q6goKAmi8="]} 2025-02-03 08:47:55.78803+00 \N 4 \N \N \N \N
4647 482 482 akshay.singh@growthnatives.com 1 {"password": ["9815434880", "pbkdf2_sha256$600000$5S1CO1s0Vexg3bzcbO5t18$3ImPWHH1JgHVur8ZYEmy4aw2bt3MeZWkM56LiO8io4U="]} 2025-02-03 08:47:56.026981+00 \N 4 \N \N \N \N
4648 483 483 surya.gehlot@growthnatives.co 1 {"password": ["9012099970", "pbkdf2_sha256$600000$6SD3V8TGgblu64vrJeDjag$AvGOuhFq+CfaLasC/O/lxhZrvmp+VcLr6zGOlcPXprQ="]} 2025-02-03 08:47:56.268678+00 \N 4 \N \N \N \N
4649 484 484 saloni.apoorva@growthnatives.com 1 {"password": ["9988742347", "pbkdf2_sha256$600000$f72FGZMkcDj6uKpLmVdB6f$MOwQfX+e35VK0SO+eAbSXLpwKeNqUa2+VFfmEZCw8h8="]} 2025-02-03 08:47:56.548123+00 \N 4 \N \N \N \N
4650 485 485 anjali.rajput@growthnatives.com 1 {"password": ["6268563380", "pbkdf2_sha256$600000$1Ttyk6V7O27pQmC4XIaKOX$41ejIOmpvgdRRND4B9XMfAnMyQRVZcFlOFk0zoXGXX0="]} 2025-02-03 08:47:56.78413+00 \N 4 \N \N \N \N
4651 486 486 sneha.kumari@growthnatives.co 1 {"password": ["9304176631", "pbkdf2_sha256$600000$v2qG8qnpucM16ey0qo3Tj9$DNjphtjFP3leXje1+mfBf/inPsYPZERI+3Zc7ctsrOo="]} 2025-02-03 08:47:57.032174+00 \N 4 \N \N \N \N
4652 487 487 mehakpreet.kaur@growthnatives.co 1 {"password": ["7973656846", "pbkdf2_sha256$600000$bVst7JEthj9UXTkex9Typq$7/yGHVg0MHlk/AwjS6BJEsTbT4/AXmA6JWW/3WV8LkY="]} 2025-02-03 08:47:57.268572+00 \N 4 \N \N \N \N
4653 488 488 diksha.gathania@growthnatives.co 1 {"password": ["8219224741", "pbkdf2_sha256$600000$d4PaSP5uyq69vq8D8Yucko$uLLAnI1Eg6SjBodBfKi2KwQDfDC5VQa+7OaJNerV/Bo="]} 2025-02-03 08:47:57.512525+00 \N 4 \N \N \N \N
4654 489 489 rimpy.sindhu@growthnatives.co 1 {"password": ["9896077870", "pbkdf2_sha256$600000$zMJAUHzVwzHhYAHh6aXJDr$pwfdDHgWlP6d9P6ezsRqkwf3Ag5xoih/1sp/qtS6iic="]} 2025-02-03 08:47:57.797663+00 \N 4 \N \N \N \N
4655 490 490 aviral.srivastav@growthnatives.co 1 {"password": ["9452812780", "pbkdf2_sha256$600000$G4HLaFgUXDl5Bvb2h1mubj$j+87meTtrDrW9DCKccdjz/X/oUP90hiyPnzKpsVB7ao="]} 2025-02-03 08:47:58.037292+00 \N 4 \N \N \N \N
4656 491 491 sachin@growthnatives.co 1 {"password": ["7018212276", "pbkdf2_sha256$600000$BnEGWd0ro3DMjIjo80iAOv$xs2p84zD6VU6j87hhvIwaUfYkYP/v2GpLpYUHslnIGo="]} 2025-02-03 08:47:58.269845+00 \N 4 \N \N \N \N
4657 492 492 amman.masood@growthnatives.co 1 {"password": ["6005053498", "pbkdf2_sha256$600000$S7UTuME2DMlanK4OOKXfLX$0osIEXCcoqrcVqC/c8peL4oUyZy65rmDWwTT+KbZBt4="]} 2025-02-03 08:47:58.504114+00 \N 4 \N \N \N \N
4658 493 493 richa.bhardwaj@growthnatives.co 1 {"password": ["9431558050", "pbkdf2_sha256$600000$EAMKOkK9LlshO8XUhmA6Hz$znZl9/rwOTyHbX+UqltpTmGrNRIjMRXUhzxGI8PqUFA="]} 2025-02-03 08:47:58.740889+00 \N 4 \N \N \N \N
4659 494 494 akshay.kurhade@growthnatives.com 1 {"password": ["9872171423", "pbkdf2_sha256$600000$HOBreo1AvLuBahmvqf4xxj$mU9ufeyIfV9jav+RTrZ/+8HgshydhA1g7W3vudB1ZpM="]} 2025-02-03 08:47:58.97964+00 \N 4 \N \N \N \N
4660 495 495 mahika.aggarwal@growthnatives.com 1 {"password": ["6280613392", "pbkdf2_sha256$600000$RFqJ5LiiyMKCWhawIkWFCp$O2oA3mIRnmv0wXDewA1JUI+qoVTNcySoc53ilCp8Rqo="]} 2025-02-03 08:47:59.220025+00 \N 4 \N \N \N \N
4661 496 496 ankit.kumar@growthnatives.co 1 {"password": ["7763950483", "pbkdf2_sha256$600000$1haTZ7QsVUWLjbd0FZhVgr$1m8iNeIdjnu8XGyI9g6f3w8IQEaRS691WVezO9WCKlY="]} 2025-02-03 08:47:59.499335+00 \N 4 \N \N \N \N
4662 497 497 jashanpreet.singh@growthnatives.co 1 {"password": ["6284492505", "pbkdf2_sha256$600000$U3mOTD3FT6EoiHcvfPAGbl$phOxoLp7oCvBhV0GTR0vPuls61rDjGEXHgNf9jpZKQ0="]} 2025-02-03 08:47:59.737191+00 \N 4 \N \N \N \N
4663 498 498 deepanshi.arora@growthnatives.com 1 {"password": ["8847422775", "pbkdf2_sha256$600000$hFENvv8Mv6FQxSvdvGrRuj$Z9xVyIhAqoxGh2cl7hnGy/kbGww41jj8nMjE5cgoBU0="]} 2025-02-03 08:47:59.98314+00 \N 4 \N \N \N \N
4664 499 499 guntas.dhillon@growthnatives.co 1 {"password": ["9465650696", "pbkdf2_sha256$600000$LzcgEj4uUEf7j9A1S0ETmx$PjCX40B9oLERaEG7oqKL22Tw/1lEWeeUXCwL01MtEY4="]} 2025-02-03 08:48:00.231439+00 \N 4 \N \N \N \N
4665 500 500 riya.sharma@diggrowth.com 1 {"password": ["6283737114", "pbkdf2_sha256$600000$NSGPZRkkO3QpMj3DN2oWoI$aJpBaT1CkrNnETZNUDwRltD652iq9JBN+LJiluVgeDU="]} 2025-02-03 08:48:00.473272+00 \N 4 \N \N \N \N
4666 501 501 lakshay@growthnatives.co 1 {"password": ["9467136155", "pbkdf2_sha256$600000$nOmC50UkaQA2csFLni8gQ4$nAxbs/ZmwJ1T3Mfniw0F/0UBMofrI4Hp1faOiu4ylg4="]} 2025-02-03 08:48:00.71604+00 \N 4 \N \N \N \N
4667 502 502 shami.kumar@growthnatives.com 1 {"password": ["9463515668", "pbkdf2_sha256$600000$sEVZ5HC2ZYYrz05uWpC1Fw$hzImpwLZjXDzukvB8CDMy5yjHCjKxgrDOVV+OJwx84I="]} 2025-02-03 08:48:00.949326+00 \N 4 \N \N \N \N
4668 503 503 devesh.saxena@growthnatives.com 1 {"password": ["8765515356", "pbkdf2_sha256$600000$6ExvjsMxwNn5XTWs0uxf9o$H76qIe6w3eVEpopU/Qq2FkkcflhE29TFl6fS+Cv6Xcg="]} 2025-02-03 08:48:01.197112+00 \N 4 \N \N \N \N
4669 504 504 kartikey.khosla@growthnatives.com 1 {"password": ["8360528947", "pbkdf2_sha256$600000$muV9lCcYpldmgGMco9TCmk$zCO4XEkTrGpJXzdTg+1ujLH978s+rTjqFNDLiD2Dt5w="]} 2025-02-03 08:48:01.452237+00 \N 4 \N \N \N \N
11415 152 152 Geeta Patial (GN0121) - HR Manager - (HR - GN) 1 {"reporting_manager_id": ["None", "273"]} 2025-02-04 08:03:25.780706+00 273 55 122.176.134.248 \N \N \N
4670 505 505 tejinder.singh@growthnatives.com 1 {"password": ["6239576769", "pbkdf2_sha256$600000$GU7LjAG9kp97gpVsoCsa5Q$5AEcsgchnHlsKZ27w133LsT1rijXV3zgj1d7++Jemso="]} 2025-02-03 08:48:01.715544+00 \N 4 \N \N \N \N
4671 506 506 arjun.thakur@growthnatives.com 1 {"password": ["8626930432", "pbkdf2_sha256$600000$GUjlOCuOZlzTFs4najDt4a$leP+N0FmGzIS7p16xnxeAxQpfU66/ihq5ubyxqeSBmk="]} 2025-02-03 08:48:01.966386+00 \N 4 \N \N \N \N
4672 507 507 nitin@growthnatives.com 1 {"password": ["7889600944", "pbkdf2_sha256$600000$UqukCVm8h4Qktm7ZFXtNu8$68LCq6wYaIBot+Ty4x1uVXg5pGnWlMMR+/uIkEoOh68="]} 2025-02-03 08:48:02.208937+00 \N 4 \N \N \N \N
4673 508 508 neha.pandita@growthnatives.com 1 {"password": ["7347540178", "pbkdf2_sha256$600000$ht055d5uR7nF70aSXxMaFU$afS32T7KybV5Uctnj2SzfP7Fpr0DHKr/H6z5Av5XK/M="]} 2025-02-03 08:48:02.465305+00 \N 4 \N \N \N \N
4674 509 509 harsh.gautam@growthnatives.co 1 {"password": ["8968756502", "pbkdf2_sha256$600000$xqFsqMF4IrsUQW4J9IDLNk$S/BrVUSMs+7RshDCLFr6eu31LW+psz19drsovDtSaVI="]} 2025-02-03 08:48:02.702254+00 \N 4 \N \N \N \N
4675 510 510 rinku.sharma@growthnatives.com 1 {"password": ["8360246317", "pbkdf2_sha256$600000$QBEtULwNo67P6iMkhcTXE7$mJlbTNLE4PM7KQD2N2OxmFG0qZmbfR3YOncsBbrlOCc="]} 2025-02-03 08:48:02.947975+00 \N 4 \N \N \N \N
4676 511 511 taran@growthnatives.com 1 {"password": ["9779916756", "pbkdf2_sha256$600000$q5GRhbEAnx07qcGh7YP9cU$/dWWj41X+LwUpW1Tz8Z+vpWX2YgSTZuQpwx4TZLfofA="]} 2025-02-03 08:48:03.230407+00 \N 4 \N \N \N \N
4677 2088 2088 Aarohi Tiwari (GN0157) - Salesforce Developer - (Salesforce - GN) as of 2025-02-03 08:49:44.883643+00:00 0 {"id": ["None", "224"], "email": ["None", "aarohi.tiwari@growthnatives.com"], "location": ["None", "Mohali"], "shift_id": ["None", "2"], "experience": ["None", "0.0"], "history_id": ["None", "2088"], "employee_id": ["None", "225"], "salary_hour": ["None", "0"], "basic_salary": ["None", "0"], "date_joining": ["None", "2021-08-02"], "history_date": ["None", "2025-02-03 08:49:44.883643"], "history_type": ["None", "~"], "history_user": ["None", "273"], "work_type_id": ["None", "4"], "department_id": ["None", "4"], "job_position_id": ["None", "140"], "employee_type_id": ["None", "3"], "history_relation": ["None", "224"], "history_highlight": ["None", "False"]} 2025-02-03 08:49:44.893268+00 273 59 122.176.134.248 \N \N \N
4678 65 65 Admin GN Your work details has been updated. 0 minutes ago 0 {"id": ["None", "65"], "data": ["null", "{\\"icon\\": \\"briefcase\\", \\"redirect\\": \\"/employee/employee-profile/\\", \\"verb_ar\\": \\"\\\\u062a\\\\u0645 \\\\u062a\\\\u062d\\\\u062f\\\\u064a\\\\u062b \\\\u062a\\\\u0641\\\\u0627\\\\u0635\\\\u064a\\\\u0644 \\\\u0639\\\\u0645\\\\u0644\\\\u0643.\\", \\"verb_de\\": \\"Ihre Arbeitsdetails wurden aktualisiert.\\", \\"verb_es\\": \\"Se han actualizado los detalles de su trabajo.\\", \\"verb_fr\\": \\"Vos informations professionnelles ont \\\\u00e9t\\\\u00e9 mises \\\\u00e0 jour.\\"}"], "verb": ["None", "Your work details has been updated."], "actor": ["None", "Admin GN "], "level": ["None", "info"], "public": ["None", "True"], "unread": ["None", "True"], "deleted": ["None", "False"], "emailed": ["None", "False"], "verb_ar": ["None", "تم تحديث تفاصيل عملك."], "verb_de": ["None", "Ihre Arbeitsdetails wurden aktualisiert."], "verb_en": ["None", ""], "verb_es": ["None", "Se han actualizado los detalles de su trabajo."], "verb_fr": ["None", "Vos informations professionnelles ont été mises à jour."], "recipient": ["None", "463"], "timestamp": ["None", "2025-02-03 08:49:44.901868"], "actor_object_id": ["None", "36"], "actor_content_type": ["None", "53"]} 2025-02-03 08:49:44.909324+00 273 7 122.176.134.248 \N \N \N
4679 512 512 mridul.kumar@growthnatives.com 1 {"password": ["8219267170", "pbkdf2_sha256$600000$gIlbdCxSSkI08lhqduwX3C$+6moN0cJcuVdq/xPaEYvn6i9iiaYilDOuSaJ4Dn9E5s="]} 2025-02-03 09:50:27.64473+00 \N 4 \N \N \N \N
4680 513 513 lokesh.Gahnolia@growthnatives.co 1 {"password": ["9034923062", "pbkdf2_sha256$600000$qHCUAcqRXiaZEmu1gAEgAC$CnhnqjBZ4XFWqA6jSe+GGRAg0EdKUCqMOPi8v0Vkn8w="]} 2025-02-03 09:50:27.908502+00 \N 4 \N \N \N \N
4681 514 514 bhavika.verma@growthnatives.com 1 {"password": ["6239188852", "pbkdf2_sha256$600000$lBJX8IPxd9VfBhC08E4zWe$xdRzdiIGEVXk2ZddlCVPHkqaEccDJf8JULvw8dPpgyY="]} 2025-02-03 09:50:28.143212+00 \N 4 \N \N \N \N
4682 515 515 eshu.arora@growthnatives.com 1 {"password": ["7052633736", "pbkdf2_sha256$600000$a2qUTEH3Dh0VtBQ5PRtblF$4drczoilkxgY+dPpfq1pkxLQ5hFHRpdPS3Q+6Txl4jU="]} 2025-02-03 09:50:28.392799+00 \N 4 \N \N \N \N
4683 516 516 chirag.takkar@growthnatives.com 1 {"password": ["7986989970", "pbkdf2_sha256$600000$D1Yu5b6bUDFtf51Z9wkbf7$Zk+EKaqC4F7NXaKLwJ/RR4d+GDBrxOVXnMmVYpnlkgQ="]} 2025-02-03 09:50:28.668311+00 \N 4 \N \N \N \N
4684 517 517 shipra.goyal@growthnatives.com 1 {"password": ["7300620639", "pbkdf2_sha256$600000$HfXhGxS0jDqqmnDQt9TBQj$qEIWrpBnvJhYCwQn+kpTX0tl60hKb5rnZxA99jYSL04="]} 2025-02-03 09:50:28.90591+00 \N 4 \N \N \N \N
4685 518 518 sourabh.dhadwal@growthnatives.co 1 {"password": ["8679250029", "pbkdf2_sha256$600000$d1RSDroGcleJns6c8YFVRQ$8dQvU6lGGEJ9l1W7MZkGO7BITTqmovMvXI1gWeEznJM="]} 2025-02-03 09:50:29.143982+00 \N 4 \N \N \N \N
4686 519 519 nitin.rana@growthnatives.com 1 {"password": ["9805658567", "pbkdf2_sha256$600000$WUXdfh1sr2WIELqr9GU00Q$TC/wnr5f071UsEmZi4FUT21vxNlL/Pk5KeeY1wbPANs="]} 2025-02-03 09:50:29.387409+00 \N 4 \N \N \N \N
4687 520 520 shivam.setia@growthnatives.co 1 {"password": ["8264619062", "pbkdf2_sha256$600000$9dIaK5nJuwTQ7Ryh9G9MRP$qic0bLaDY+oEP21by0zY6iJcrpObVBrj/5tf52uNUWc="]} 2025-02-03 09:50:29.630889+00 \N 4 \N \N \N \N
4688 521 521 ritik.badola@growthnatives.co 1 {"password": ["9877955619", "pbkdf2_sha256$600000$1umdodtqgfpveXmtVgxyLM$0NawHCk4VZzI3IYIm77yZWOT4uSYsvUOiYU9A/P8JXQ="]} 2025-02-03 09:50:29.866242+00 \N 4 \N \N \N \N
4689 522 522 kartik.sharma@growthnatives.co 1 {"password": ["8054331231", "pbkdf2_sha256$600000$7cTr3JHtuWkTADfZgHCXTV$IHQBOpXGMB18CqzMp/i+pLWT4hPugsGa3t3DFR12LnE="]} 2025-02-03 09:50:30.106818+00 \N 4 \N \N \N \N
4690 523 523 yashika.gupta@growthnatives.com 1 {"password": ["9410356415", "pbkdf2_sha256$600000$EYgWMAvmTVMsvyNXOw4UHF$PNTC0bHbojcCM95rVSkrdMvoJPyIpAz1KY1lsSGRrIc="]} 2025-02-03 09:50:30.341184+00 \N 4 \N \N \N \N
4691 524 524 nitish.prabhakar@growthnatives.com 1 {"password": ["9041235489", "pbkdf2_sha256$600000$mSXqPBoqdJuPUqZXS094dQ$wZSxIUQPOzzhwhZsqjph5ZM38BkdoaUna8lIL6/Qq/8="]} 2025-02-03 09:50:30.582483+00 \N 4 \N \N \N \N
4692 525 525 ikbal.singh@growthnatives.com 1 {"password": ["9464469041", "pbkdf2_sha256$600000$kRh07G3T18fLYx1ZQ3gu7l$VLvsW6n5BzO1y6sHzl0Gm/nREyy4qHPQb0PGKH8nNrM="]} 2025-02-03 09:50:30.817007+00 \N 4 \N \N \N \N
4693 526 526 rahul.sindwani@growthnatives.com 1 {"password": ["9877708879", "pbkdf2_sha256$600000$cW724LvifX3sbROebDWV5T$XkSqzZPhdiuRYufSVIrdNLGKNeCLyZcTXCehrzCrR+E="]} 2025-02-03 09:50:31.054766+00 \N 4 \N \N \N \N
4694 527 527 chirag.sharma@growthnatives.co 1 {"password": ["7807839404", "pbkdf2_sha256$600000$BgtGMTgXybgKzMgbPhvl9h$NoVl6liG3IS6AbVp8TUVX29ISq6bE6+87+X4gXn+MBA="]} 2025-02-03 09:50:31.298194+00 \N 4 \N \N \N \N
4695 528 528 harshika.sachdeva@growthnatives.com 1 {"password": ["9413360342", "pbkdf2_sha256$600000$XPJTaCaBIdc3eu0KD9gg67$Oza6rVFDmKcGrDfXFPAFmSGmb/Oqbo3tBDRhXsKMtO0="]} 2025-02-03 09:50:31.538639+00 \N 4 \N \N \N \N
4696 529 529 dharna.sharma@growthnatives.com 1 {"password": ["7696908426", "pbkdf2_sha256$600000$9WngxcjbVmwla1OJezkunN$R0PuxrP7P6hVBi1euvignfXbLNYxjMFBW7jN7bdCtwY="]} 2025-02-03 09:50:31.772257+00 \N 4 \N \N \N \N
4697 530 530 bhavna.joshi@growthnatives.com 1 {"password": ["7528057785", "pbkdf2_sha256$600000$nmHAz0XduOUQ4CK3kSNSyc$URWiuMZgCfTg/Umjl1SBlCCkwaNr/0Nm7taTCyY4bRY="]} 2025-02-03 09:50:32.024866+00 \N 4 \N \N \N \N
4698 531 531 vardan.singh@growthnatives.co 1 {"password": ["9459593525", "pbkdf2_sha256$600000$DiIMPLiDtwJTu2Bc1sIZ1F$Q52++HuOf6IvVFAB25Bs+g2gTycv0gFLqY9+uBoC6lo="]} 2025-02-03 09:50:32.294886+00 \N 4 \N \N \N \N
4699 532 532 kj@growthnatives.com 1 {"password": ["9988501795", "pbkdf2_sha256$600000$8qyJdac9nM8ZPZnmYiRQQq$QQmkbxzAw9T8Mhqm8dWME6+quXIC1eONsvmiJB9Too0="]} 2025-02-03 09:50:32.543605+00 \N 4 \N \N \N \N
4700 533 533 chhavinav.sehgal@growthnatives.com 1 {"password": ["7888832721", "pbkdf2_sha256$600000$kgVPJ1KE4iByHYL2ycMCLi$M3fkC7bBNh0HZoS4XGXBa6mjGVhnmWNjvEhyxEw73+I="]} 2025-02-03 09:50:32.786547+00 \N 4 \N \N \N \N
4701 534 534 rishav.rajan@growthnatives.co 1 {"password": ["8825248677", "pbkdf2_sha256$600000$VDX17kIj4FsnNxsVH4BIro$8y1J2B+86vIYADbmhN5E8WYJizqpksycr/lmu19LRiw="]} 2025-02-03 09:50:33.025406+00 \N 4 \N \N \N \N
4702 535 535 sahil.koundal@growthnatives.co 1 {"password": ["8307016384", "pbkdf2_sha256$600000$V19ZeHEgyqMdexOAUe0BcB$qTyy9zZMavZ8vA1eWWLxORdK2Toc8ug4k6+qA19LS/c="]} 2025-02-03 09:50:33.268627+00 \N 4 \N \N \N \N
4703 536 536 vishal.mehta@growthnatives.com 1 {"password": ["9855553177", "pbkdf2_sha256$600000$0TVhqpg66UxTUOHWgAa28R$5wZV+L1tcZlXhq+1NMxRHaaINo0B3rlDpAH8bZhTdwk="]} 2025-02-03 09:50:33.506789+00 \N 4 \N \N \N \N
4704 h2srrijw828v1voay1y0d515lf5o5x5c \N h2srrijw828v1voay1y0d515lf5o5x5c 0 {"expire_date": ["None", "2025-02-17 09:53:07.727224"], "session_key": ["None", "h2srrijw828v1voay1y0d515lf5o5x5c"], "session_data": ["None", "eyJ0aXRsZSI6IkRBU0hCT0FSRCJ9:1tet8d:yZobvbkVJDHcXaRuan0Tbprf5zhwk1MSHlNA7IhbYpA"]} 2025-02-03 09:53:07.728709+00 \N 6 \N \N \N \N
4705 cs7icckjgmfttv8sugftbwm3ga1yzgoj \N cs7icckjgmfttv8sugftbwm3ga1yzgoj 0 {"expire_date": ["None", "2025-02-17 09:53:07.942012"], "session_key": ["None", "cs7icckjgmfttv8sugftbwm3ga1yzgoj"], "session_data": ["None", ".eJyrVkoqSk1MSS4qzU0qVrKKrlYqLcpRslLKKCkpKLbS108tKtBLSc1NzEspSU3O0MsvStdX0lHKS8xNBSpy9wOy0_JL81KUrEqKSlNrdYjQnpOfnpmnb5-XWlFii2QWWBjNuNhaAAPWNm0:1tet8d:Qc9W33UxhBPy20LfUye7v7QjX-GPpU8IDJuypsyDKus"]} 2025-02-03 09:53:07.943502+00 \N 6 \N \N \N \N
4706 qx8ruuca4gyr6t36fy7u9173meqigx9x \N qx8ruuca4gyr6t36fy7u9173meqigx9x 2 {"expire_date": ["2025-02-17 09:53:09.696800", "None"], "session_key": ["qx8ruuca4gyr6t36fy7u9173meqigx9x", "None"], "session_data": [".eJxtk0uP20YQhP9KwEMu6UjzIGc4CxjBxjFyyp58CwyBEmdXSqgHKCqIsdj_nq8cAY6BHAhyprurq6qbr812rsO4m2_H7bV5-P21uc1T89Dsl-VyfViv63xZjfU4nMal7var8_yybqw5DcdK0q9PfD-fb6exeVjmW337ZM1muC37ze1a582B6ybk2Hxzux12f1ZVNOMfw-nlvNqdT8t82K6UsrpHr6vfzmOdfr7nfgOwH657qrvO5613LpS2RJdzl93OD9tx9M_RjdthTFuXkh_LmPo2pJTK87MLLm27voZdqIBe61R3Sx03u_PxMpw-gzpM0_8ENofTdRlOO0S_Nl-TH6fpu_f3kzUHhPzHudvhx-GvYRnmKwqP6-FyWP8k395R9cO96nvJfZnl4LsZj89HcJb693IH_7fVoV4Fj2Wn2zS9kXFYJvn_-PHjh6dfHp_ef9AcDtNSZzjX42U6f65V4wyhs663EIL5zlny5nmC6827YLm3NprPznJrpbWYLPhinAP3ITijpqOma7nh6RL1znzJFjOFHTAd14R8sl7HTCZPbMkEg-YtcMFbIZGodzQJFESiCR4FTM99J17FfCTdB0vZ2t5SAILHA0dRgUtATgajcB3J5w46vvcGWlAXZIWeCOfUWUsenIPTG4aZt2oKyEhBs898OzqggQXhjnMGE8m-4_sLPYyCjQciyEIPdQ9coBEme_yAQsjeeiL4GQpNIxV9NIpDJNoDxLuAJeNlGISlopV3gpLgYtR4CSxy1lkPTMDVnmOSX5yLZiggPIGsjl7haAmj6K3p6N3RNMgA5k8-o8AOgsHDqpWDlAVIasiqaw02asMM5GOUp5qKZAoBm6Q1YU3PNw73OBkkUrumEpYLJ5ghMAQxncykoVAEZW2TjGLGzNdroEHm4DiT8RSjKXRaLrmKFepa1Fl7I1uT6ei1niw5J1kXDUVBC-EUgI4YSCU2ei-_spEf1VsoiNW6asLaIjHkSupaE6us4WiS2uLeMt01jVarEo1oJwejaTSI8b3GpFZc85sF7Zd-GxX1oiMzoSGn8NfLZ2141GpqgWnAPyUy6iUVX1ZTIe01aZLs3Ke3fwDgAGG0:1tet8f:gSYiSBWULfXpWAlAp4Dcnu6hKm4adU_SGvc5ey75wxA", "None"]} 2025-02-03 09:53:20.671319+00 273 6 122.176.134.248 \N \N \N
4707 j4k6hzbzvo6nlrpzkrfrrj351a1geacg \N j4k6hzbzvo6nlrpzkrfrrj351a1geacg 0 {"expire_date": ["None", "2025-02-17 09:53:21.049515"], "session_key": ["None", "j4k6hzbzvo6nlrpzkrfrrj351a1geacg"], "session_data": ["None", ".eJyrVkoqSk1MSS4qzU0qVrKKrlYqLcpRslLKKCkpKLbS108tKtBLSc1NzEspSU3O0MsvStdX0lHKS8xNBSpy9wOy0_JL81KUrEqKSlNrdYjQnpOfnpmHZAiYj2ZObC0Aisk0Aw:1tet8r:yZ4cj8nYAvIvTwOsQFqVSRV-lzPcOmLMmXAQTePnp6I"]} 2025-02-03 09:53:21.051036+00 \N 6 \N \N \N \N
4708 nktq1gebl8gpwf3tdwq9zarrcst27mfu \N nktq1gebl8gpwf3tdwq9zarrcst27mfu 0 {"expire_date": ["None", "2025-02-17 09:55:53.949389"], "session_key": ["None", "nktq1gebl8gpwf3tdwq9zarrcst27mfu"], "session_data": ["None", ".eJyrVkoqSk1MSS4qzU0qVrKKrlYqLcpRslLKKCkpKLbS108tKtBLSc1NzEspSU3O0MsvStdX0lHKS8xNBSpy9wOy0_JL81KUrEqKSlNrdYjQnpOfnpmHZAiYj2ZObC0Aisk0Aw:1tetBJ:o-Ai3um0feVFl6WA1NJbYRnvweIFZHqYdFhstsf_6Dw"]} 2025-02-03 09:55:53.950597+00 \N 6 122.176.134.248 \N \N \N
4709 j4k6hzbzvo6nlrpzkrfrrj351a1geacg \N j4k6hzbzvo6nlrpzkrfrrj351a1geacg 2 {"expire_date": ["2025-02-17 09:53:21.404444", "None"], "session_key": ["j4k6hzbzvo6nlrpzkrfrrj351a1geacg", "None"], "session_data": [".eJyrVkoqSk1MSS4qzU0qVrKKrlYqLcpRslLKKCkpKLbS108tKtBLSc1NzEspSU3O0MsvStdX0lHKS8xNBSpy9wOy0_JL81KUrEqKSlNrdYjQnpOfnpmHZAiYj2ZObC0Aisk0Aw:1tet8r:yZ4cj8nYAvIvTwOsQFqVSRV-lzPcOmLMmXAQTePnp6I", "None"]} 2025-02-03 09:55:53.95501+00 \N 6 122.176.134.248 \N \N \N
4710 535 535 sahil.koundal@growthnatives.co 1 {"last_login": ["None", "2025-02-03 09:55:53.956937"]} 2025-02-03 09:55:53.958276+00 \N 4 122.176.134.248 \N \N \N
4711 9 9 Sahil Koundal (GN0576) - charts 0 {"id": ["None", "9"], "charts": ["null", "[]"], "employee": ["None", "297"], "is_active": ["None", "True"], "created_at": ["None", "2025-02-03 09:55:54.247728"], "created_by": ["None", "535"], "modified_by": ["None", "535"]} 2025-02-03 09:55:54.24935+00 535 18 122.176.134.248 \N \N \N
4712 11 11 DriverViewed object (11) 0 {"id": ["None", "11"], "user": ["None", "535"], "viewed": ["None", "dashboard"]} 2025-02-03 09:55:56.596674+00 535 20 122.176.134.248 \N \N \N
4713 ghu7mfbcem95x8x5lesw9nove8cf2dkc \N ghu7mfbcem95x8x5lesw9nove8cf2dkc 0 {"expire_date": ["None", "2025-02-17 09:56:20.793484"], "session_key": ["None", "ghu7mfbcem95x8x5lesw9nove8cf2dkc"], "session_data": ["None", ".eJyrVkoqSk1MSS4qzU0qVrKKrlYqLcpRslLKKCkpKLbS108tKtBLSc1NzEspSU3O0MsvStdX0lHKS8xNBSpy9wOy0_JL81KUrEqKSlNrdYjQnpOfnpmnb5-XWlFii2QWWBjNuNhaAAPWNm0:1tetBk:dY9aCyR4y2U1r-RgHnivZjy5rtRExO-ti2Hta3_ydlM"]} 2025-02-03 09:56:20.795075+00 \N 6 \N \N \N \N
4714 w2z490tx52zyj1kpci9a6qud53974dak \N w2z490tx52zyj1kpci9a6qud53974dak 0 {"expire_date": ["None", "2025-02-17 09:56:30.132546"], "session_key": ["None", "w2z490tx52zyj1kpci9a6qud53974dak"], "session_data": ["None", "eyJ0aXRsZSI6IkRBU0hCT0FSRCJ9:1tetBu:C9bqC2v0qkO13d7oocFDKGf1nh7sjwgDLkrAiZoOnKg"]} 2025-02-03 09:56:30.133991+00 \N 6 \N \N \N \N
4797 5 5 Intern 0 {"id": ["None", "5"], "color": ["None", "#000000"], "title": ["None", "Intern"], "is_active": ["None", "True"], "created_at": ["None", "2025-02-03 10:16:18.709275"], "created_by": ["None", "273"], "modified_by": ["None", "273"]} 2025-02-03 10:16:18.715604+00 273 54 122.176.134.248 \N \N \N
4715 2oed8484h3cwt9f3xyr5o6opl91xpk9i \N 2oed8484h3cwt9f3xyr5o6opl91xpk9i 2 {"expire_date": ["2025-02-17 09:56:38.485358", "None"], "session_key": ["2oed8484h3cwt9f3xyr5o6opl91xpk9i", "None"], "session_data": [".eJxtk0-v40QQxL8K8oELTTJ_7Bk70moFHDiBuKNVZMeTl7COEzkOYvX0vju_ekRikThY9kx3V1dVt1-rff9YT_vHvSz781jtqpBjZV_fDv3hc5kVGv_o55fr5nCd1-U8bJSyeUbvm1-uY5l-fOb-B-DU309UN43Pg3cudHUXXc5NdgffD-Poj9GNQz-mwaXkx25MbR1SSt3x6IJLQ9OWcAgF0HuZymEt4_5wvdz6-Quo_TT9T2B_nu9rPx9KtXut_k3-YZq--el5suqMEC5P63q777bbx_n7_s9-7Zc7Ci_b_nbefpz7S_lA1XfPqm8l92W5Pubxw9LP4_UCzlr-Wp_g_7Q6l7vgsWx-TNMbGed1gkr1W1mO1-XyTsyqYSn9eFgel-Fe7X5_rR7L9BWdstw2YyF3XMvhtLkuL1tqRIikn3_l-yga1W5dHuXtE8fztJYFD8rlNl2_lCLUEBprWgshmG-cJW-eJ7jWvAuWW6uj-ews19bVFpMF3xnnwH0IzqhpqGlqbniaRL0z32WLmcIGmIZrQj5Zq2MmkyfWZIJB8xq44K0jkah3NAkURKIJHh2YnvtGvDrzkXQfLGWrW0sBCB4PHEUdXAJyMhgd15F87qDjW2-gBXVBVmiJcE6N1eTBOTi9YZh5q6YDGSlo9plvRwc0sHDccc5gItk3fL_TwyjYeCCCLPRQ98AFGmGyxw8ohOytJYKfoaNppKKNRnGIRFuAeHdgyXgZBmGpqOWdoCS4M2q8BHZy1lkLTMDVlmOSX5w7zVBAeAJZHb3C0RJG0VvT0buhaZABzJ98RoEdBIOHVS0HKQuQ1JBVVxts1IYZyMcoTzUVyRQCNklrwpqWbxxucTJIpHZNJSwXTjBDYAhiOplJQ6EIytomGcWMma_XQIPMwXEm4ylGU2i0XHIVK9S1U2ftjWxNpqPXerLknGRdNBQFLYRTADpiIJXY6L38ykZ-VG-hIFbrqglri8SQK6mrTayyhqNJaotby3TXNGqtSjSijRyMptEgxrcak1pxzW8WtF_6bVTUio7MhIacwl8vn7XhUaupBaYB_5TIqJdUvK-mQtpr0iTZuU9vfwPXIGNP:1tetC2:5-ZGhvLfmGspsyqhicF2TWo-TM5VVYW0iyNGsr0tN1A", "None"]} 2025-02-03 09:56:38.983477+00 273 6 122.176.134.248 \N \N \N
4716 4pi3s3dwyby06ixlvl3nnq3p5ihpsda5 \N 4pi3s3dwyby06ixlvl3nnq3p5ihpsda5 0 {"expire_date": ["None", "2025-02-17 09:56:39.634241"], "session_key": ["None", "4pi3s3dwyby06ixlvl3nnq3p5ihpsda5"], "session_data": ["None", ".eJyrVkoqSk1MSS4qzU0qVrKKrlYqLcpRslLKKCkpKLbS108tKtBLSc1NzEspSU3O0MsvStdX0lHKS8xNBSpy9wOy0_JL81KUrEqKSlNrdYjQnpOfnpmHZAiYj2ZObC0Aisk0Aw:1tetC3:frAGXW14in2lYG1kC86ZeWhgSHe0L70Ev0AmQLZCgjo"]} 2025-02-03 09:56:39.637489+00 \N 6 \N \N \N \N
4717 vtv6lbq37faz0yhwl8nikmjo3qp16wiu \N vtv6lbq37faz0yhwl8nikmjo3qp16wiu 0 {"expire_date": ["None", "2025-02-17 09:56:39.663425"], "session_key": ["None", "vtv6lbq37faz0yhwl8nikmjo3qp16wiu"], "session_data": ["None", "eyJ0aXRsZSI6IkRBU0hCT0FSRCJ9:1tetC3:XLqm9sTa79cC9R9ERZHYX0fduwAASvRxOwYgRrdOHrw"]} 2025-02-03 09:56:39.666968+00 \N 6 \N \N \N \N
4718 bfosv9zagma9szm4ziwj0gcm9f87iu4f \N bfosv9zagma9szm4ziwj0gcm9f87iu4f 0 {"expire_date": ["None", "2025-02-17 09:56:40.799637"], "session_key": ["None", "bfosv9zagma9szm4ziwj0gcm9f87iu4f"], "session_data": ["None", ".eJyrVkoqSk1MSS4qzU0qVrKKrlYqLcpRslLKKCkpKLbS108tKtBLSc1NzEspSU3O0MsvStdX0lHKS8xNBSpy9wOy0_JL81KUrEqKSlNrdYjQnpOfnpmnb5-XWlFii2QWWBjNuNhaAAPWNm0:1tetC4:OdAnBjtop7PjPVbwmGC8-w2SwbfCsyvYyupplGBVca0"]} 2025-02-03 09:56:40.801866+00 \N 6 122.176.134.248 \N \N \N
4719 ghu7mfbcem95x8x5lesw9nove8cf2dkc \N ghu7mfbcem95x8x5lesw9nove8cf2dkc 2 {"expire_date": ["2025-02-17 09:56:20.793484", "None"], "session_key": ["ghu7mfbcem95x8x5lesw9nove8cf2dkc", "None"], "session_data": [".eJyrVkoqSk1MSS4qzU0qVrKKrlYqLcpRslLKKCkpKLbS108tKtBLSc1NzEspSU3O0MsvStdX0lHKS8xNBSpy9wOy0_JL81KUrEqKSlNrdYjQnpOfnpmnb5-XWlFii2QWWBjNuNhaAAPWNm0:1tetBk:dY9aCyR4y2U1r-RgHnivZjy5rtRExO-ti2Hta3_ydlM", "None"]} 2025-02-03 09:56:40.810217+00 \N 6 122.176.134.248 \N \N \N
4720 273 273 Admin 1 {"last_login": ["2025-02-03 08:37:30.055502", "2025-02-03 09:56:40.815334"]} 2025-02-03 09:56:40.823983+00 \N 4 122.176.134.248 \N \N \N
4721 0nllfy74joihe02wcvpw69evcgbvkv7c \N 0nllfy74joihe02wcvpw69evcgbvkv7c 0 {"expire_date": ["None", "2025-02-17 09:56:43.414454"], "session_key": ["None", "0nllfy74joihe02wcvpw69evcgbvkv7c"], "session_data": ["None", "eyJ0aXRsZSI6IkRBU0hCT0FSRCJ9:1tetC7:bB0ThoFJu94ebeiFt2Pe6R6gmYUlrWT6pYmU6D_vAsA"]} 2025-02-03 09:56:43.416004+00 \N 6 \N \N \N \N
4722 6sssmh3pi02hc3lybpesr5dziy5r4xan \N 6sssmh3pi02hc3lybpesr5dziy5r4xan 0 {"expire_date": ["None", "2025-02-17 09:56:46.475439"], "session_key": ["None", "6sssmh3pi02hc3lybpesr5dziy5r4xan"], "session_data": ["None", ".eJyrVirJLMlJVbJScnEM9nDydwxyUdJRSipKTUxJLirNTSpWsoquViotygGqyCgpKSi20tdPLSrQS0nNTcxLKUlNztDLL0rXB-rJS8wFGePuB2Sn5ZfmpShZlRSVptbqEKE9Jz89M0_fPi-1osQWySywMJpxsbUAwQA8BQ:1tetCA:K1NzBEcyqaQTXIQx8dHiqb-QU9z9y4t5Jhn9Q4kbu20"]} 2025-02-03 09:56:46.480191+00 \N 6 122.176.134.248 \N \N \N
4723 vtv6lbq37faz0yhwl8nikmjo3qp16wiu \N vtv6lbq37faz0yhwl8nikmjo3qp16wiu 2 {"expire_date": ["2025-02-17 09:56:40.209182", "None"], "session_key": ["vtv6lbq37faz0yhwl8nikmjo3qp16wiu", "None"], "session_data": [".eJyrVirJLMlJVbJScnEM9nDydwxyUdJRSipKTUxJLirNTSpWsoquViotygGqyCgpKSi20tdPLSrQS0nNTcxLKUlNztDLL0rXB-rJS8wFGePuB2Sn5ZfmpShZlRSVptbqEKE9Jz89M0_fPi-1osQWySywMJpxsbUAwQA8BQ:1tetC4:aovm4YAeBHGz--4eJpzdpxzXRsFvd-coQK9hP3ExDyk", "None"]} 2025-02-03 09:56:46.518147+00 \N 6 122.176.134.248 \N \N \N
4724 514 514 bhavika.verma@growthnatives.com 1 {"last_login": ["None", "2025-02-03 09:56:46.533355"]} 2025-02-03 09:56:46.541561+00 \N 4 122.176.134.248 \N \N \N
4725 10 10 Bhavika (GN0279) - charts 0 {"id": ["None", "10"], "charts": ["null", "[]"], "employee": ["None", "276"], "is_active": ["None", "True"], "created_at": ["None", "2025-02-03 09:56:46.966266"], "created_by": ["None", "514"], "modified_by": ["None", "514"]} 2025-02-03 09:56:46.979521+00 514 18 122.176.134.248 \N \N \N
4726 e8yvavk982gzvfw8jz6z0h7l8rvmju8p \N e8yvavk982gzvfw8jz6z0h7l8rvmju8p 0 {"expire_date": ["None", "2025-02-17 09:56:47.425840"], "session_key": ["None", "e8yvavk982gzvfw8jz6z0h7l8rvmju8p"], "session_data": ["None", ".eJyrVirJLMlJVbJScnEM9nDydwxyUdJRSipKTUxJLirNTSpWsoquViotygGqyCgpKSi20tdPLSrQS0nNTcxLKUlNztDLL0rXB-rJS8wFGePuB2Sn5ZfmpShZlRSVptbqEKE9Jz89M0_fPi-1osQWySywMJpxsbUAwQA8BQ:1tetCB:DJktV41_nlYnOWRQ4rIP9zKGuBKadMPWlgPz2XPb7vU"]} 2025-02-03 09:56:47.431+00 \N 6 14.195.60.42 \N \N \N
4727 w2z490tx52zyj1kpci9a6qud53974dak \N w2z490tx52zyj1kpci9a6qud53974dak 2 {"expire_date": ["2025-02-17 09:56:30.451007", "None"], "session_key": ["w2z490tx52zyj1kpci9a6qud53974dak", "None"], "session_data": [".eJyrVirJLMlJVbJScnEM9nDydwxyUdJRSipKTUxJLirNTSpWsoquViotygGqyCgpKSi20tdPLSrQS0nNTcxLKUlNztDLL0rXB-rJS8wFGePuB2Sn5ZfmpShZlRSVptbqEKE9Jz89M0_fPi-1osQWySywMJpxsbUAwQA8BQ:1tetBu:wxN685wYkMPCqW2l7KgJzJgVdXpNf3_Vu3MZsB5ZWzA", "None"]} 2025-02-03 09:56:47.464018+00 \N 6 14.195.60.42 \N \N \N
4728 513 513 lokesh.Gahnolia@growthnatives.co 1 {"last_login": ["None", "2025-02-03 09:56:47.482710"]} 2025-02-03 09:56:47.489195+00 \N 4 14.195.60.42 \N \N \N
4729 11 11 Lokesh (GN0548) - charts 0 {"id": ["None", "11"], "charts": ["null", "[]"], "employee": ["None", "275"], "is_active": ["None", "True"], "created_at": ["None", "2025-02-03 09:56:47.885528"], "created_by": ["None", "513"], "modified_by": ["None", "513"]} 2025-02-03 09:56:47.888556+00 513 18 14.195.60.42 \N \N \N
4730 12 12 DriverViewed object (12) 0 {"id": ["None", "12"], "user": ["None", "514"], "viewed": ["None", "dashboard"]} 2025-02-03 09:56:50.756458+00 514 20 122.176.134.248 \N \N \N
4731 13 13 DriverViewed object (13) 0 {"id": ["None", "13"], "user": ["None", "513"], "viewed": ["None", "dashboard"]} 2025-02-03 09:56:51.09197+00 513 20 14.195.60.42 \N \N \N
4732 7txe3w2yfdaub1qvbd96iiknynttv89e \N 7txe3w2yfdaub1qvbd96iiknynttv89e 0 {"expire_date": ["None", "2025-02-17 09:56:53.968447"], "session_key": ["None", "7txe3w2yfdaub1qvbd96iiknynttv89e"], "session_data": ["None", ".eJyrVkoqSk1MSS4qzU0qVrKKrlYqLcpRslLKKCkpKLbS108tKtBLSc1NzEspSU3O0MsvStdX0lHKS8xNBSpy9wOy0_JL81KUrEqKSlNrdYjQnpOfnpmHZAiYj2ZObC0Aisk0Aw:1tetCH:kd5sIy4hFdNk6rhmrlrfvw0ErK6oXlCSXPjVjDDAn7M"]} 2025-02-03 09:56:53.988285+00 \N 6 122.176.134.248 \N \N \N
4733 4pi3s3dwyby06ixlvl3nnq3p5ihpsda5 \N 4pi3s3dwyby06ixlvl3nnq3p5ihpsda5 2 {"expire_date": ["2025-02-17 09:56:40.177568", "None"], "session_key": ["4pi3s3dwyby06ixlvl3nnq3p5ihpsda5", "None"], "session_data": [".eJyrVkoqSk1MSS4qzU0qVrKKrlYqLcpRslLKKCkpKLbS108tKtBLSc1NzEspSU3O0MsvStdX0lHKS8xNBSpy9wOy0_JL81KUrEqKSlNrdYjQnpOfnpmHZAiYj2ZObC0Aisk0Aw:1tetC4:vMJm4ZkOeZcPUM6vYkIMeqtdcEu0zUuauzrDiNKKYa4", "None"]} 2025-02-03 09:56:54.028713+00 \N 6 122.176.134.248 \N \N \N
4734 515 515 eshu.arora@growthnatives.com 1 {"last_login": ["None", "2025-02-03 09:56:54.187133"]} 2025-02-03 09:56:54.195615+00 \N 4 122.176.134.248 \N \N \N
4735 12 12 Eshu Arora (GN0147) - charts 0 {"id": ["None", "12"], "charts": ["null", "[]"], "employee": ["None", "277"], "is_active": ["None", "True"], "created_at": ["None", "2025-02-03 09:56:54.878188"], "created_by": ["None", "515"], "modified_by": ["None", "515"]} 2025-02-03 09:56:54.88643+00 515 18 122.176.134.248 \N \N \N
4736 14 14 DriverViewed object (14) 0 {"id": ["None", "14"], "user": ["None", "515"], "viewed": ["None", "dashboard"]} 2025-02-03 09:56:56.676275+00 515 20 122.176.134.248 \N \N \N
4737 7 7 DefaultAccessibility object (7) 0 {"id": ["None", "7"], "filter": ["null", "{\\"exclude_all\\": [\\"on\\"], \\"feature\\": [\\"employee_view\\"]}"], "feature": ["None", "employee_view"], "is_active": ["None", "True"], "created_at": ["None", "2025-02-03 09:57:04.243246"], "created_by": ["None", "273"], "exclude_all": ["None", "True"], "modified_by": ["None", "273"]} 2025-02-03 09:57:04.252782+00 273 182 122.176.134.248 \N \N \N
4738 7 7 DefaultAccessibility object (7) 1 {"employees": {"type": "m2m", "objects": ["Aarohi Tiwari (GN0157)", "Aashish Nagar (GN0329)", "Aastha Mittal (GN0345)", "Abeer Aulakh (GN0364)", "Abhi Panwar (GN0533)", "Abhijeet (GN0500)", "Abhinav Dass (GN0579)", "Abhisek (GN0598)", "Abhishek Pathania (GN0185)", "Abhishek Panchal (GN0017)", "Abhishek (GN0574)", "Aditi Sharma (MA TEAM) (GN0308)", "Aditi Chauhan (GN0431)", "Admin GN ", "Ajay Sharma (GN0445)", "Ajit Singh (GN0344)", "Akanksha Dass (GN0421)", "Akanksha Thakur (GN0436)", "Akansha Negi (GN0553)", "Akash Pathania (GN0546)", "Akhil Yadav (GN0106)", "Akshay Singh (GN0278)", "Akshay Kurhade (GN0180)", "Akshit Issar (GN0592)", "Akshita Khanna (GN0503)", "Alisha Kapoor (GN0601)", "Aman Gota (GN0481)", "Aman Thakur (GN0530)", "Amman Masood (GN0524)", "Anant Chaudhary (GN0561)", "Ananta (GN0534)", "Angshu Das (GN0498)", "Anjali Rajput (GN0580)", "Anjali Gupta (GN0312)", "Anju Yadav (GN0512)", "Ankit Kumar (GN0584)", "Ankit Vashishth (GN0204)", "Ankit Chauhan (GN0413)", "Ankita Rana (GN0408)", "Anmol Sharma (GN0586)", "Anshu Kumari Gupta (GN0531)", "Anupriya Goyal (GN0239)", "Anuradha Mishra (GN0313)", "Arjun Thakur (GN0551)", "Arpit Goyal (GN0197)", "Arpit (GN0338)", "Arpit Srivastava (GN0277)", "Arshdeep Singh Multani (GN0501)", "Arshpreet Kaur (GN0583)", "Ashish Chauhan (GN0048)", "Ashish Malhoch (GN0383)", "Ashish Pathania (GN0402)", "Ashul Kumar (GN0523)", "Aviral Srivastav (GN0559)", "Baljinder Singh (GN0186)", "Balpreet Singh (GN0055)", "Barirah Roshin (GN0475)", "Bhag Singh (GN0334)", "Bhavika (GN0279)", "Bhavna Joshi (GN0082)", "Bhavya Soni (GN0447)", "Brijesh Kumar (GN0572)", "Chandan Deep (GN0525)", "Chandan Madaan (GN0176)", "Chandan Kumar (GN0381)", "Chhavinav (GN0039)", "Chirag Takkar (GN0144)", "Chirag Sharma (GN0502)", "Daksh Jethi (GN0537)", "Deepak Gaud (GN0417)", "Deepak Garg (GN0028)", "Deepanshi Arora (GN0542)", "Deepinder Singh (GN0604)", "Devesh Saxena (GN0259)", "Devesh Ojha (GN0566)", "Dharna Sharma (GN0099)", "Dhruv Jindal (GN0603)", "Diksha Gathania (GN0468)", "Diksha Sharma (GN0472)", "Dilbag Singh (GN0194)", "Dilraj Singh (GN0589)", "Durgesh Kumar (GN0350)", "Ekamonkar Singh (GN0587)", "Era Bhawra (GN0444)", "Eshu Arora (GN0147)", "Gagandeep Singh( design team) (GN0322)", "Gaurav Rajput (GN0001)", "Gaurav Saini (GN0556)", "Geeta Patial (GN0121)", "Geetanjali (GN0400)", "Gulshan Kumar (GN0084)", "Guntas Dhillon (GN0519)", "Gurdev Singh (GN0493)", "Gurkirat Singh (GN0440)", "Gurpreet Singh Saroye (GN0599)", "Gurpreet Singh (GN0543)", "Gurvinder Singh (GN0454)", "Harpuneet Singh (GN0150)", "Harsh Gautam (GN0484)", "Harsh Vardhan Pathak (GN0565)", "Harsh (GN0486)", "Harshika (GN0149)", "Harshika Chadha (GN0324)", "Harshita Joshi (GN0174)", "Hitakshi (GN0521)", "Hitika Saini (GN0398)", "Ikbal Singh (GN0011)", "Inayat Kaur (GN0578)", "Irfan Ahmad (GN0435)", "Ishan Shaurya (GN0358)", "Ishika Kashyap (GN0505)", "Ishika (GN0242)", "Ishtpreet Kaur (GN0209)", "Jagrit Sharma (GN0306)", "Janak Magotra (GN0492)", "Jashan Deep Sukhija (GN0066)", "Jashanpreet Singh Gill (GN0585)", "Jaskaran Singh (GN0063)", "Kamal Sharma (SFDC) (GN0526)", "Kamaljit Singh (GN0318)", "Karamjeet Singh Chauhan (GN0487)", "Karan Kaushal (GN0136)", "Kartik Singh Thakur (GN0496)", "Kartik Sharma (GN0499)", "Kartikey Khosla (GN0248)", "Kashish (GN0462)", "Kaushik Dhiman (GN0495)", "Keshav Sharma (GN0577)", "Kirandeep Singh (GN0416)", "Kirpal Singh (GN0225)", "Komal (GN0414)", "Kritika (GN0455)", "Lakshay (GN0453)", "Lavish Rana (GN0437)", "Leepakshi Saini (GN0511)", "Lokesh (GN0548)", "Mahesh Dattatraya Nirmal (GN0573)", "Mahika Aggarwal (GN0596)", "Malvika Chauhan (GN0203)", "Manica Kwatra (GN0337)", "Manoj Pandey (GN0471)", "Manpreet Kaur (GN0115)", "Manu Jamwal (GN0238)", "Mayank Sharma (GN0288)", "Mehak Hasija (GN0033)", "Mehakpreet Kaur (GN0538)", "Mohd Sufiyan (GN0311)", "Mohit Dharwal (GN0243)", "Mohit Arora (GN0518)", "Mohit Kumar (GN0027)", "Mridul Kumar (GN0591)", "Musawwir Ahamad Fani (GN0388)", "Muskaan (GN0390)", "Nakul Sharma (GN0552)", "Naman Katariya (GN0563)", "Nandini Sharma (GN0478)", "Neha Pandita (GN0593)", "Nikhil Singh (GN0320)", "Nikita Uppal (GN0564)", "Nishant Singh (GN0540)", "Nitin Rana (GN0233)", "Nitin Sharma (sale) (GN0216)", "Nitish Prabhakar (GN0131)", "Nitish Gupta (GN0428)", "Paras Sharma (GN0178)", "Parmveer Singh (GN0065)", "Pawan Joshi (GN0343)", "Piyush Ajay Bageshwar (GN0449)", "Praneet Kaur Dhillon (GN0567)", "Prashant Thakur (GN0339)", "Prateek Khatri (GN0571)", "Prem Sagar (GN0257)", "Prerna kaushal (GN0177)", "Prince Kumar Sharma (GN0332)", "Priya Dashore (GN0581)", "Purushotham Narayan (GN0380)", "Pushpa (GN0461)", "Rahul Verma (GN0429)", "Rahul Sharma (GN0019)", "Rahul Sindwani (GN0208)", "Rahul Sachdeva (GN0491)", "Rahul Kumar (GN0532)", "Rahul Sharma (SFDC) (GN0255)", "Rajnish Ranjan (GN0535)", "Rama Sharma (GN0528)", "Ramandeep Singh Bagga (GN0309)", "Ravideep Singh (GN0570)", "Ravina Garg (GN0228)", "Richa Bhardwaj (GN0482)", "Rimpy Sindhu (GN0450)", "Rinku Sharma (GN0240)", "Rishab Sharma (GN0430)", "Rishav Ranjan (GN0594)", "Ritik Badola (GN0411)", "Riya Sharma (GN0582)", "Rohan (GN0504)", "Rommel Datta (GN0396)", "Ruby Sindwani (GN0213)", "Rukman Singh (GN0062)", "Sachin Kumar (GN0412)", "Sachin Manocha (GN0474)", "Sachin (GN0527)", "Sahil Minhas (GN0557)", "Sahil Koundal (GN0576)", "Saksham Bhatia (GN0600)", "Sakshi Arora (GN0043)", "Saloni Apoorva (GN0184)", "Sameer Pawar (GN0427)", "Santosh Mandal (GN0490)", "Sanya Midha (GN0456)", "Satwinder Singh (GN0076)", "Saurabh Sharma (MA) (GN0442)", "Saurabh Goyal (GN0515)", "Sayam Sehgal (GN0360)", "Sehajpreet Singh (GN0142)", "Shagun Sharma (GN0130)", "Shahzad Musawwir Farid (GN0016)", "Shailendra Pratap (GN0038)", "Shaini Agnihotri (GN0595)", "Shakshi (GN0403)", "Shalini Chauhan (GN0059)", "Shami Kumar (GN0289)", "Sharmistha Dey (GN0271)", "Shipra Goyal (GN0135)", "Shiromani Bhatti (GN0418)", "Shivam Kathpal (GN0438)", "Shivam Joshi (GN0466)", "Shivam Kumar Pandey (GN0330)", "Shivam Setia (GN0465)", "Shivesh Sharma (GN0132)", "Shreya Narula (GN0590)", "Shubham Chaudhary (GN0181)", "Simran (GN0326)", "Simranjit Kaur (GN0506)", "Sneha (GN0522)", "Sneha Kumari (GN0549)", "Sonu Yadav (GN0494)", "Sourabh Dhadwal (GN0460)", "Sourabh (GN0221)", "Sourin Manna (GN0497)", "Sukhpreet Kaur (GN0047)", "Sumeet Rana (GN0054)", "Sumit Kumar Bhatt (GN0175)", "Suraj Singh Rawat (GN0179)", "Surya Gehlot (GN0382)", "Taran Bir Singh Nandha (GN0002)", "Tarun Kumar (GN0446)", "Tejinder Singh (GN0148)", "Tripatraj (GN0597)", "Tushar Misri (GN0171)", "Vaibhav Kumar (GN0307)", "Vardaan Pandit (GN0195)", "Vardan Singh (GN0386)", "Varun Kumar Kashyap (GN0588)", "Vashu Choudhary (GN0404)", "Vedaant Sooden (GN0507)", "Vikrant Baranwal (GN0545)", "Vipin Kumar (GN0555)", "Vishal Chauhan (GN0280)", "Vishal Mehta (GN0097)", "Yashika Gupta (GN0152)", "Yogesh Sharma (GN0485)", "Yuvraj Walia (GN0602)"], "operation": "add"}} 2025-02-03 09:57:05.573812+00 273 182 122.176.134.248 \N \N \N
4739 8 8 DefaultAccessibility object (8) 0 {"id": ["None", "8"], "filter": ["null", "{\\"exclude_all\\": [\\"on\\"], \\"feature\\": [\\"employee_detailed_view\\"]}"], "feature": ["None", "employee_detailed_view"], "is_active": ["None", "True"], "created_at": ["None", "2025-02-03 09:57:07.501134"], "created_by": ["None", "273"], "exclude_all": ["None", "True"], "modified_by": ["None", "273"]} 2025-02-03 09:57:07.504973+00 273 182 122.176.134.248 \N \N \N
4740 8 8 DefaultAccessibility object (8) 1 {"employees": {"type": "m2m", "objects": ["Aarohi Tiwari (GN0157)", "Aashish Nagar (GN0329)", "Aastha Mittal (GN0345)", "Abeer Aulakh (GN0364)", "Abhi Panwar (GN0533)", "Abhijeet (GN0500)", "Abhinav Dass (GN0579)", "Abhisek (GN0598)", "Abhishek Pathania (GN0185)", "Abhishek Panchal (GN0017)", "Abhishek (GN0574)", "Aditi Sharma (MA TEAM) (GN0308)", "Aditi Chauhan (GN0431)", "Admin GN ", "Ajay Sharma (GN0445)", "Ajit Singh (GN0344)", "Akanksha Dass (GN0421)", "Akanksha Thakur (GN0436)", "Akansha Negi (GN0553)", "Akash Pathania (GN0546)", "Akhil Yadav (GN0106)", "Akshay Singh (GN0278)", "Akshay Kurhade (GN0180)", "Akshit Issar (GN0592)", "Akshita Khanna (GN0503)", "Alisha Kapoor (GN0601)", "Aman Gota (GN0481)", "Aman Thakur (GN0530)", "Amman Masood (GN0524)", "Anant Chaudhary (GN0561)", "Ananta (GN0534)", "Angshu Das (GN0498)", "Anjali Rajput (GN0580)", "Anjali Gupta (GN0312)", "Anju Yadav (GN0512)", "Ankit Kumar (GN0584)", "Ankit Vashishth (GN0204)", "Ankit Chauhan (GN0413)", "Ankita Rana (GN0408)", "Anmol Sharma (GN0586)", "Anshu Kumari Gupta (GN0531)", "Anupriya Goyal (GN0239)", "Anuradha Mishra (GN0313)", "Arjun Thakur (GN0551)", "Arpit Goyal (GN0197)", "Arpit (GN0338)", "Arpit Srivastava (GN0277)", "Arshdeep Singh Multani (GN0501)", "Arshpreet Kaur (GN0583)", "Ashish Chauhan (GN0048)", "Ashish Malhoch (GN0383)", "Ashish Pathania (GN0402)", "Ashul Kumar (GN0523)", "Aviral Srivastav (GN0559)", "Baljinder Singh (GN0186)", "Balpreet Singh (GN0055)", "Barirah Roshin (GN0475)", "Bhag Singh (GN0334)", "Bhavika (GN0279)", "Bhavna Joshi (GN0082)", "Bhavya Soni (GN0447)", "Brijesh Kumar (GN0572)", "Chandan Deep (GN0525)", "Chandan Madaan (GN0176)", "Chandan Kumar (GN0381)", "Chhavinav (GN0039)", "Chirag Takkar (GN0144)", "Chirag Sharma (GN0502)", "Daksh Jethi (GN0537)", "Deepak Gaud (GN0417)", "Deepak Garg (GN0028)", "Deepanshi Arora (GN0542)", "Deepinder Singh (GN0604)", "Devesh Saxena (GN0259)", "Devesh Ojha (GN0566)", "Dharna Sharma (GN0099)", "Dhruv Jindal (GN0603)", "Diksha Gathania (GN0468)", "Diksha Sharma (GN0472)", "Dilbag Singh (GN0194)", "Dilraj Singh (GN0589)", "Durgesh Kumar (GN0350)", "Ekamonkar Singh (GN0587)", "Era Bhawra (GN0444)", "Eshu Arora (GN0147)", "Gagandeep Singh( design team) (GN0322)", "Gaurav Rajput (GN0001)", "Gaurav Saini (GN0556)", "Geeta Patial (GN0121)", "Geetanjali (GN0400)", "Gulshan Kumar (GN0084)", "Guntas Dhillon (GN0519)", "Gurdev Singh (GN0493)", "Gurkirat Singh (GN0440)", "Gurpreet Singh Saroye (GN0599)", "Gurpreet Singh (GN0543)", "Gurvinder Singh (GN0454)", "Harpuneet Singh (GN0150)", "Harsh Gautam (GN0484)", "Harsh Vardhan Pathak (GN0565)", "Harsh (GN0486)", "Harshika (GN0149)", "Harshika Chadha (GN0324)", "Harshita Joshi (GN0174)", "Hitakshi (GN0521)", "Hitika Saini (GN0398)", "Ikbal Singh (GN0011)", "Inayat Kaur (GN0578)", "Irfan Ahmad (GN0435)", "Ishan Shaurya (GN0358)", "Ishika Kashyap (GN0505)", "Ishika (GN0242)", "Ishtpreet Kaur (GN0209)", "Jagrit Sharma (GN0306)", "Janak Magotra (GN0492)", "Jashan Deep Sukhija (GN0066)", "Jashanpreet Singh Gill (GN0585)", "Jaskaran Singh (GN0063)", "Kamal Sharma (SFDC) (GN0526)", "Kamaljit Singh (GN0318)", "Karamjeet Singh Chauhan (GN0487)", "Karan Kaushal (GN0136)", "Kartik Singh Thakur (GN0496)", "Kartik Sharma (GN0499)", "Kartikey Khosla (GN0248)", "Kashish (GN0462)", "Kaushik Dhiman (GN0495)", "Keshav Sharma (GN0577)", "Kirandeep Singh (GN0416)", "Kirpal Singh (GN0225)", "Komal (GN0414)", "Kritika (GN0455)", "Lakshay (GN0453)", "Lavish Rana (GN0437)", "Leepakshi Saini (GN0511)", "Lokesh (GN0548)", "Mahesh Dattatraya Nirmal (GN0573)", "Mahika Aggarwal (GN0596)", "Malvika Chauhan (GN0203)", "Manica Kwatra (GN0337)", "Manoj Pandey (GN0471)", "Manpreet Kaur (GN0115)", "Manu Jamwal (GN0238)", "Mayank Sharma (GN0288)", "Mehak Hasija (GN0033)", "Mehakpreet Kaur (GN0538)", "Mohd Sufiyan (GN0311)", "Mohit Dharwal (GN0243)", "Mohit Arora (GN0518)", "Mohit Kumar (GN0027)", "Mridul Kumar (GN0591)", "Musawwir Ahamad Fani (GN0388)", "Muskaan (GN0390)", "Nakul Sharma (GN0552)", "Naman Katariya (GN0563)", "Nandini Sharma (GN0478)", "Neha Pandita (GN0593)", "Nikhil Singh (GN0320)", "Nikita Uppal (GN0564)", "Nishant Singh (GN0540)", "Nitin Rana (GN0233)", "Nitin Sharma (sale) (GN0216)", "Nitish Prabhakar (GN0131)", "Nitish Gupta (GN0428)", "Paras Sharma (GN0178)", "Parmveer Singh (GN0065)", "Pawan Joshi (GN0343)", "Piyush Ajay Bageshwar (GN0449)", "Praneet Kaur Dhillon (GN0567)", "Prashant Thakur (GN0339)", "Prateek Khatri (GN0571)", "Prem Sagar (GN0257)", "Prerna kaushal (GN0177)", "Prince Kumar Sharma (GN0332)", "Priya Dashore (GN0581)", "Purushotham Narayan (GN0380)", "Pushpa (GN0461)", "Rahul Verma (GN0429)", "Rahul Sharma (GN0019)", "Rahul Sindwani (GN0208)", "Rahul Sachdeva (GN0491)", "Rahul Kumar (GN0532)", "Rahul Sharma (SFDC) (GN0255)", "Rajnish Ranjan (GN0535)", "Rama Sharma (GN0528)", "Ramandeep Singh Bagga (GN0309)", "Ravideep Singh (GN0570)", "Ravina Garg (GN0228)", "Richa Bhardwaj (GN0482)", "Rimpy Sindhu (GN0450)", "Rinku Sharma (GN0240)", "Rishab Sharma (GN0430)", "Rishav Ranjan (GN0594)", "Ritik Badola (GN0411)", "Riya Sharma (GN0582)", "Rohan (GN0504)", "Rommel Datta (GN0396)", "Ruby Sindwani (GN0213)", "Rukman Singh (GN0062)", "Sachin Kumar (GN0412)", "Sachin Manocha (GN0474)", "Sachin (GN0527)", "Sahil Minhas (GN0557)", "Sahil Koundal (GN0576)", "Saksham Bhatia (GN0600)", "Sakshi Arora (GN0043)", "Saloni Apoorva (GN0184)", "Sameer Pawar (GN0427)", "Santosh Mandal (GN0490)", "Sanya Midha (GN0456)", "Satwinder Singh (GN0076)", "Saurabh Sharma (MA) (GN0442)", "Saurabh Goyal (GN0515)", "Sayam Sehgal (GN0360)", "Sehajpreet Singh (GN0142)", "Shagun Sharma (GN0130)", "Shahzad Musawwir Farid (GN0016)", "Shailendra Pratap (GN0038)", "Shaini Agnihotri (GN0595)", "Shakshi (GN0403)", "Shalini Chauhan (GN0059)", "Shami Kumar (GN0289)", "Sharmistha Dey (GN0271)", "Shipra Goyal (GN0135)", "Shiromani Bhatti (GN0418)", "Shivam Kathpal (GN0438)", "Shivam Joshi (GN0466)", "Shivam Kumar Pandey (GN0330)", "Shivam Setia (GN0465)", "Shivesh Sharma (GN0132)", "Shreya Narula (GN0590)", "Shubham Chaudhary (GN0181)", "Simran (GN0326)", "Simranjit Kaur (GN0506)", "Sneha (GN0522)", "Sneha Kumari (GN0549)", "Sonu Yadav (GN0494)", "Sourabh Dhadwal (GN0460)", "Sourabh (GN0221)", "Sourin Manna (GN0497)", "Sukhpreet Kaur (GN0047)", "Sumeet Rana (GN0054)", "Sumit Kumar Bhatt (GN0175)", "Suraj Singh Rawat (GN0179)", "Surya Gehlot (GN0382)", "Taran Bir Singh Nandha (GN0002)", "Tarun Kumar (GN0446)", "Tejinder Singh (GN0148)", "Tripatraj (GN0597)", "Tushar Misri (GN0171)", "Vaibhav Kumar (GN0307)", "Vardaan Pandit (GN0195)", "Vardan Singh (GN0386)", "Varun Kumar Kashyap (GN0588)", "Vashu Choudhary (GN0404)", "Vedaant Sooden (GN0507)", "Vikrant Baranwal (GN0545)", "Vipin Kumar (GN0555)", "Vishal Chauhan (GN0280)", "Vishal Mehta (GN0097)", "Yashika Gupta (GN0152)", "Yogesh Sharma (GN0485)", "Yuvraj Walia (GN0602)"], "operation": "add"}} 2025-02-03 09:57:08.821262+00 273 182 122.176.134.248 \N \N \N
4741 9 9 DefaultAccessibility object (9) 0 {"id": ["None", "9"], "filter": ["null", "{\\"exclude_all\\": [\\"on\\"], \\"feature\\": [\\"profile_edit\\"]}"], "feature": ["None", "profile_edit"], "is_active": ["None", "True"], "created_at": ["None", "2025-02-03 09:57:12.082589"], "created_by": ["None", "273"], "exclude_all": ["None", "True"], "modified_by": ["None", "273"]} 2025-02-03 09:57:12.087153+00 273 182 122.176.134.248 \N \N \N
4742 9 9 DefaultAccessibility object (9) 1 {"employees": {"type": "m2m", "objects": ["Aarohi Tiwari (GN0157)", "Aashish Nagar (GN0329)", "Aastha Mittal (GN0345)", "Abeer Aulakh (GN0364)", "Abhi Panwar (GN0533)", "Abhijeet (GN0500)", "Abhinav Dass (GN0579)", "Abhisek (GN0598)", "Abhishek Pathania (GN0185)", "Abhishek Panchal (GN0017)", "Abhishek (GN0574)", "Aditi Sharma (MA TEAM) (GN0308)", "Aditi Chauhan (GN0431)", "Admin GN ", "Ajay Sharma (GN0445)", "Ajit Singh (GN0344)", "Akanksha Dass (GN0421)", "Akanksha Thakur (GN0436)", "Akansha Negi (GN0553)", "Akash Pathania (GN0546)", "Akhil Yadav (GN0106)", "Akshay Singh (GN0278)", "Akshay Kurhade (GN0180)", "Akshit Issar (GN0592)", "Akshita Khanna (GN0503)", "Alisha Kapoor (GN0601)", "Aman Gota (GN0481)", "Aman Thakur (GN0530)", "Amman Masood (GN0524)", "Anant Chaudhary (GN0561)", "Ananta (GN0534)", "Angshu Das (GN0498)", "Anjali Rajput (GN0580)", "Anjali Gupta (GN0312)", "Anju Yadav (GN0512)", "Ankit Kumar (GN0584)", "Ankit Vashishth (GN0204)", "Ankit Chauhan (GN0413)", "Ankita Rana (GN0408)", "Anmol Sharma (GN0586)", "Anshu Kumari Gupta (GN0531)", "Anupriya Goyal (GN0239)", "Anuradha Mishra (GN0313)", "Arjun Thakur (GN0551)", "Arpit Goyal (GN0197)", "Arpit (GN0338)", "Arpit Srivastava (GN0277)", "Arshdeep Singh Multani (GN0501)", "Arshpreet Kaur (GN0583)", "Ashish Chauhan (GN0048)", "Ashish Malhoch (GN0383)", "Ashish Pathania (GN0402)", "Ashul Kumar (GN0523)", "Aviral Srivastav (GN0559)", "Baljinder Singh (GN0186)", "Balpreet Singh (GN0055)", "Barirah Roshin (GN0475)", "Bhag Singh (GN0334)", "Bhavika (GN0279)", "Bhavna Joshi (GN0082)", "Bhavya Soni (GN0447)", "Brijesh Kumar (GN0572)", "Chandan Deep (GN0525)", "Chandan Madaan (GN0176)", "Chandan Kumar (GN0381)", "Chhavinav (GN0039)", "Chirag Takkar (GN0144)", "Chirag Sharma (GN0502)", "Daksh Jethi (GN0537)", "Deepak Gaud (GN0417)", "Deepak Garg (GN0028)", "Deepanshi Arora (GN0542)", "Deepinder Singh (GN0604)", "Devesh Saxena (GN0259)", "Devesh Ojha (GN0566)", "Dharna Sharma (GN0099)", "Dhruv Jindal (GN0603)", "Diksha Gathania (GN0468)", "Diksha Sharma (GN0472)", "Dilbag Singh (GN0194)", "Dilraj Singh (GN0589)", "Durgesh Kumar (GN0350)", "Ekamonkar Singh (GN0587)", "Era Bhawra (GN0444)", "Eshu Arora (GN0147)", "Gagandeep Singh( design team) (GN0322)", "Gaurav Rajput (GN0001)", "Gaurav Saini (GN0556)", "Geeta Patial (GN0121)", "Geetanjali (GN0400)", "Gulshan Kumar (GN0084)", "Guntas Dhillon (GN0519)", "Gurdev Singh (GN0493)", "Gurkirat Singh (GN0440)", "Gurpreet Singh Saroye (GN0599)", "Gurpreet Singh (GN0543)", "Gurvinder Singh (GN0454)", "Harpuneet Singh (GN0150)", "Harsh Gautam (GN0484)", "Harsh Vardhan Pathak (GN0565)", "Harsh (GN0486)", "Harshika (GN0149)", "Harshika Chadha (GN0324)", "Harshita Joshi (GN0174)", "Hitakshi (GN0521)", "Hitika Saini (GN0398)", "Ikbal Singh (GN0011)", "Inayat Kaur (GN0578)", "Irfan Ahmad (GN0435)", "Ishan Shaurya (GN0358)", "Ishika Kashyap (GN0505)", "Ishika (GN0242)", "Ishtpreet Kaur (GN0209)", "Jagrit Sharma (GN0306)", "Janak Magotra (GN0492)", "Jashan Deep Sukhija (GN0066)", "Jashanpreet Singh Gill (GN0585)", "Jaskaran Singh (GN0063)", "Kamal Sharma (SFDC) (GN0526)", "Kamaljit Singh (GN0318)", "Karamjeet Singh Chauhan (GN0487)", "Karan Kaushal (GN0136)", "Kartik Singh Thakur (GN0496)", "Kartik Sharma (GN0499)", "Kartikey Khosla (GN0248)", "Kashish (GN0462)", "Kaushik Dhiman (GN0495)", "Keshav Sharma (GN0577)", "Kirandeep Singh (GN0416)", "Kirpal Singh (GN0225)", "Komal (GN0414)", "Kritika (GN0455)", "Lakshay (GN0453)", "Lavish Rana (GN0437)", "Leepakshi Saini (GN0511)", "Lokesh (GN0548)", "Mahesh Dattatraya Nirmal (GN0573)", "Mahika Aggarwal (GN0596)", "Malvika Chauhan (GN0203)", "Manica Kwatra (GN0337)", "Manoj Pandey (GN0471)", "Manpreet Kaur (GN0115)", "Manu Jamwal (GN0238)", "Mayank Sharma (GN0288)", "Mehak Hasija (GN0033)", "Mehakpreet Kaur (GN0538)", "Mohd Sufiyan (GN0311)", "Mohit Dharwal (GN0243)", "Mohit Arora (GN0518)", "Mohit Kumar (GN0027)", "Mridul Kumar (GN0591)", "Musawwir Ahamad Fani (GN0388)", "Muskaan (GN0390)", "Nakul Sharma (GN0552)", "Naman Katariya (GN0563)", "Nandini Sharma (GN0478)", "Neha Pandita (GN0593)", "Nikhil Singh (GN0320)", "Nikita Uppal (GN0564)", "Nishant Singh (GN0540)", "Nitin Rana (GN0233)", "Nitin Sharma (sale) (GN0216)", "Nitish Prabhakar (GN0131)", "Nitish Gupta (GN0428)", "Paras Sharma (GN0178)", "Parmveer Singh (GN0065)", "Pawan Joshi (GN0343)", "Piyush Ajay Bageshwar (GN0449)", "Praneet Kaur Dhillon (GN0567)", "Prashant Thakur (GN0339)", "Prateek Khatri (GN0571)", "Prem Sagar (GN0257)", "Prerna kaushal (GN0177)", "Prince Kumar Sharma (GN0332)", "Priya Dashore (GN0581)", "Purushotham Narayan (GN0380)", "Pushpa (GN0461)", "Rahul Verma (GN0429)", "Rahul Sharma (GN0019)", "Rahul Sindwani (GN0208)", "Rahul Sachdeva (GN0491)", "Rahul Kumar (GN0532)", "Rahul Sharma (SFDC) (GN0255)", "Rajnish Ranjan (GN0535)", "Rama Sharma (GN0528)", "Ramandeep Singh Bagga (GN0309)", "Ravideep Singh (GN0570)", "Ravina Garg (GN0228)", "Richa Bhardwaj (GN0482)", "Rimpy Sindhu (GN0450)", "Rinku Sharma (GN0240)", "Rishab Sharma (GN0430)", "Rishav Ranjan (GN0594)", "Ritik Badola (GN0411)", "Riya Sharma (GN0582)", "Rohan (GN0504)", "Rommel Datta (GN0396)", "Ruby Sindwani (GN0213)", "Rukman Singh (GN0062)", "Sachin Kumar (GN0412)", "Sachin Manocha (GN0474)", "Sachin (GN0527)", "Sahil Minhas (GN0557)", "Sahil Koundal (GN0576)", "Saksham Bhatia (GN0600)", "Sakshi Arora (GN0043)", "Saloni Apoorva (GN0184)", "Sameer Pawar (GN0427)", "Santosh Mandal (GN0490)", "Sanya Midha (GN0456)", "Satwinder Singh (GN0076)", "Saurabh Sharma (MA) (GN0442)", "Saurabh Goyal (GN0515)", "Sayam Sehgal (GN0360)", "Sehajpreet Singh (GN0142)", "Shagun Sharma (GN0130)", "Shahzad Musawwir Farid (GN0016)", "Shailendra Pratap (GN0038)", "Shaini Agnihotri (GN0595)", "Shakshi (GN0403)", "Shalini Chauhan (GN0059)", "Shami Kumar (GN0289)", "Sharmistha Dey (GN0271)", "Shipra Goyal (GN0135)", "Shiromani Bhatti (GN0418)", "Shivam Kathpal (GN0438)", "Shivam Joshi (GN0466)", "Shivam Kumar Pandey (GN0330)", "Shivam Setia (GN0465)", "Shivesh Sharma (GN0132)", "Shreya Narula (GN0590)", "Shubham Chaudhary (GN0181)", "Simran (GN0326)", "Simranjit Kaur (GN0506)", "Sneha (GN0522)", "Sneha Kumari (GN0549)", "Sonu Yadav (GN0494)", "Sourabh Dhadwal (GN0460)", "Sourabh (GN0221)", "Sourin Manna (GN0497)", "Sukhpreet Kaur (GN0047)", "Sumeet Rana (GN0054)", "Sumit Kumar Bhatt (GN0175)", "Suraj Singh Rawat (GN0179)", "Surya Gehlot (GN0382)", "Taran Bir Singh Nandha (GN0002)", "Tarun Kumar (GN0446)", "Tejinder Singh (GN0148)", "Tripatraj (GN0597)", "Tushar Misri (GN0171)", "Vaibhav Kumar (GN0307)", "Vardaan Pandit (GN0195)", "Vardan Singh (GN0386)", "Varun Kumar Kashyap (GN0588)", "Vashu Choudhary (GN0404)", "Vedaant Sooden (GN0507)", "Vikrant Baranwal (GN0545)", "Vipin Kumar (GN0555)", "Vishal Chauhan (GN0280)", "Vishal Mehta (GN0097)", "Yashika Gupta (GN0152)", "Yogesh Sharma (GN0485)", "Yuvraj Walia (GN0602)"], "operation": "add"}} 2025-02-03 09:57:13.548943+00 273 182 122.176.134.248 \N \N \N
4743 10 10 DefaultAccessibility object (10) 0 {"id": ["None", "10"], "filter": ["null", "{\\"exclude_all\\": [\\"on\\"], \\"feature\\": [\\"gender_chart\\"]}"], "feature": ["None", "gender_chart"], "is_active": ["None", "True"], "created_at": ["None", "2025-02-03 09:57:15.299765"], "created_by": ["None", "273"], "exclude_all": ["None", "True"], "modified_by": ["None", "273"]} 2025-02-03 09:57:15.304985+00 273 182 122.176.134.248 \N \N \N
4744 10 10 DefaultAccessibility object (10) 1 {"employees": {"type": "m2m", "objects": ["Aarohi Tiwari (GN0157)", "Aashish Nagar (GN0329)", "Aastha Mittal (GN0345)", "Abeer Aulakh (GN0364)", "Abhi Panwar (GN0533)", "Abhijeet (GN0500)", "Abhinav Dass (GN0579)", "Abhisek (GN0598)", "Abhishek Pathania (GN0185)", "Abhishek Panchal (GN0017)", "Abhishek (GN0574)", "Aditi Sharma (MA TEAM) (GN0308)", "Aditi Chauhan (GN0431)", "Admin GN ", "Ajay Sharma (GN0445)", "Ajit Singh (GN0344)", "Akanksha Dass (GN0421)", "Akanksha Thakur (GN0436)", "Akansha Negi (GN0553)", "Akash Pathania (GN0546)", "Akhil Yadav (GN0106)", "Akshay Singh (GN0278)", "Akshay Kurhade (GN0180)", "Akshit Issar (GN0592)", "Akshita Khanna (GN0503)", "Alisha Kapoor (GN0601)", "Aman Gota (GN0481)", "Aman Thakur (GN0530)", "Amman Masood (GN0524)", "Anant Chaudhary (GN0561)", "Ananta (GN0534)", "Angshu Das (GN0498)", "Anjali Rajput (GN0580)", "Anjali Gupta (GN0312)", "Anju Yadav (GN0512)", "Ankit Kumar (GN0584)", "Ankit Vashishth (GN0204)", "Ankit Chauhan (GN0413)", "Ankita Rana (GN0408)", "Anmol Sharma (GN0586)", "Anshu Kumari Gupta (GN0531)", "Anupriya Goyal (GN0239)", "Anuradha Mishra (GN0313)", "Arjun Thakur (GN0551)", "Arpit Goyal (GN0197)", "Arpit (GN0338)", "Arpit Srivastava (GN0277)", "Arshdeep Singh Multani (GN0501)", "Arshpreet Kaur (GN0583)", "Ashish Chauhan (GN0048)", "Ashish Malhoch (GN0383)", "Ashish Pathania (GN0402)", "Ashul Kumar (GN0523)", "Aviral Srivastav (GN0559)", "Baljinder Singh (GN0186)", "Balpreet Singh (GN0055)", "Barirah Roshin (GN0475)", "Bhag Singh (GN0334)", "Bhavika (GN0279)", "Bhavna Joshi (GN0082)", "Bhavya Soni (GN0447)", "Brijesh Kumar (GN0572)", "Chandan Deep (GN0525)", "Chandan Madaan (GN0176)", "Chandan Kumar (GN0381)", "Chhavinav (GN0039)", "Chirag Takkar (GN0144)", "Chirag Sharma (GN0502)", "Daksh Jethi (GN0537)", "Deepak Gaud (GN0417)", "Deepak Garg (GN0028)", "Deepanshi Arora (GN0542)", "Deepinder Singh (GN0604)", "Devesh Saxena (GN0259)", "Devesh Ojha (GN0566)", "Dharna Sharma (GN0099)", "Dhruv Jindal (GN0603)", "Diksha Gathania (GN0468)", "Diksha Sharma (GN0472)", "Dilbag Singh (GN0194)", "Dilraj Singh (GN0589)", "Durgesh Kumar (GN0350)", "Ekamonkar Singh (GN0587)", "Era Bhawra (GN0444)", "Eshu Arora (GN0147)", "Gagandeep Singh( design team) (GN0322)", "Gaurav Rajput (GN0001)", "Gaurav Saini (GN0556)", "Geeta Patial (GN0121)", "Geetanjali (GN0400)", "Gulshan Kumar (GN0084)", "Guntas Dhillon (GN0519)", "Gurdev Singh (GN0493)", "Gurkirat Singh (GN0440)", "Gurpreet Singh Saroye (GN0599)", "Gurpreet Singh (GN0543)", "Gurvinder Singh (GN0454)", "Harpuneet Singh (GN0150)", "Harsh Gautam (GN0484)", "Harsh Vardhan Pathak (GN0565)", "Harsh (GN0486)", "Harshika (GN0149)", "Harshika Chadha (GN0324)", "Harshita Joshi (GN0174)", "Hitakshi (GN0521)", "Hitika Saini (GN0398)", "Ikbal Singh (GN0011)", "Inayat Kaur (GN0578)", "Irfan Ahmad (GN0435)", "Ishan Shaurya (GN0358)", "Ishika Kashyap (GN0505)", "Ishika (GN0242)", "Ishtpreet Kaur (GN0209)", "Jagrit Sharma (GN0306)", "Janak Magotra (GN0492)", "Jashan Deep Sukhija (GN0066)", "Jashanpreet Singh Gill (GN0585)", "Jaskaran Singh (GN0063)", "Kamal Sharma (SFDC) (GN0526)", "Kamaljit Singh (GN0318)", "Karamjeet Singh Chauhan (GN0487)", "Karan Kaushal (GN0136)", "Kartik Singh Thakur (GN0496)", "Kartik Sharma (GN0499)", "Kartikey Khosla (GN0248)", "Kashish (GN0462)", "Kaushik Dhiman (GN0495)", "Keshav Sharma (GN0577)", "Kirandeep Singh (GN0416)", "Kirpal Singh (GN0225)", "Komal (GN0414)", "Kritika (GN0455)", "Lakshay (GN0453)", "Lavish Rana (GN0437)", "Leepakshi Saini (GN0511)", "Lokesh (GN0548)", "Mahesh Dattatraya Nirmal (GN0573)", "Mahika Aggarwal (GN0596)", "Malvika Chauhan (GN0203)", "Manica Kwatra (GN0337)", "Manoj Pandey (GN0471)", "Manpreet Kaur (GN0115)", "Manu Jamwal (GN0238)", "Mayank Sharma (GN0288)", "Mehak Hasija (GN0033)", "Mehakpreet Kaur (GN0538)", "Mohd Sufiyan (GN0311)", "Mohit Dharwal (GN0243)", "Mohit Arora (GN0518)", "Mohit Kumar (GN0027)", "Mridul Kumar (GN0591)", "Musawwir Ahamad Fani (GN0388)", "Muskaan (GN0390)", "Nakul Sharma (GN0552)", "Naman Katariya (GN0563)", "Nandini Sharma (GN0478)", "Neha Pandita (GN0593)", "Nikhil Singh (GN0320)", "Nikita Uppal (GN0564)", "Nishant Singh (GN0540)", "Nitin Rana (GN0233)", "Nitin Sharma (sale) (GN0216)", "Nitish Prabhakar (GN0131)", "Nitish Gupta (GN0428)", "Paras Sharma (GN0178)", "Parmveer Singh (GN0065)", "Pawan Joshi (GN0343)", "Piyush Ajay Bageshwar (GN0449)", "Praneet Kaur Dhillon (GN0567)", "Prashant Thakur (GN0339)", "Prateek Khatri (GN0571)", "Prem Sagar (GN0257)", "Prerna kaushal (GN0177)", "Prince Kumar Sharma (GN0332)", "Priya Dashore (GN0581)", "Purushotham Narayan (GN0380)", "Pushpa (GN0461)", "Rahul Verma (GN0429)", "Rahul Sharma (GN0019)", "Rahul Sindwani (GN0208)", "Rahul Sachdeva (GN0491)", "Rahul Kumar (GN0532)", "Rahul Sharma (SFDC) (GN0255)", "Rajnish Ranjan (GN0535)", "Rama Sharma (GN0528)", "Ramandeep Singh Bagga (GN0309)", "Ravideep Singh (GN0570)", "Ravina Garg (GN0228)", "Richa Bhardwaj (GN0482)", "Rimpy Sindhu (GN0450)", "Rinku Sharma (GN0240)", "Rishab Sharma (GN0430)", "Rishav Ranjan (GN0594)", "Ritik Badola (GN0411)", "Riya Sharma (GN0582)", "Rohan (GN0504)", "Rommel Datta (GN0396)", "Ruby Sindwani (GN0213)", "Rukman Singh (GN0062)", "Sachin Kumar (GN0412)", "Sachin Manocha (GN0474)", "Sachin (GN0527)", "Sahil Minhas (GN0557)", "Sahil Koundal (GN0576)", "Saksham Bhatia (GN0600)", "Sakshi Arora (GN0043)", "Saloni Apoorva (GN0184)", "Sameer Pawar (GN0427)", "Santosh Mandal (GN0490)", "Sanya Midha (GN0456)", "Satwinder Singh (GN0076)", "Saurabh Sharma (MA) (GN0442)", "Saurabh Goyal (GN0515)", "Sayam Sehgal (GN0360)", "Sehajpreet Singh (GN0142)", "Shagun Sharma (GN0130)", "Shahzad Musawwir Farid (GN0016)", "Shailendra Pratap (GN0038)", "Shaini Agnihotri (GN0595)", "Shakshi (GN0403)", "Shalini Chauhan (GN0059)", "Shami Kumar (GN0289)", "Sharmistha Dey (GN0271)", "Shipra Goyal (GN0135)", "Shiromani Bhatti (GN0418)", "Shivam Kathpal (GN0438)", "Shivam Joshi (GN0466)", "Shivam Kumar Pandey (GN0330)", "Shivam Setia (GN0465)", "Shivesh Sharma (GN0132)", "Shreya Narula (GN0590)", "Shubham Chaudhary (GN0181)", "Simran (GN0326)", "Simranjit Kaur (GN0506)", "Sneha (GN0522)", "Sneha Kumari (GN0549)", "Sonu Yadav (GN0494)", "Sourabh Dhadwal (GN0460)", "Sourabh (GN0221)", "Sourin Manna (GN0497)", "Sukhpreet Kaur (GN0047)", "Sumeet Rana (GN0054)", "Sumit Kumar Bhatt (GN0175)", "Suraj Singh Rawat (GN0179)", "Surya Gehlot (GN0382)", "Taran Bir Singh Nandha (GN0002)", "Tarun Kumar (GN0446)", "Tejinder Singh (GN0148)", "Tripatraj (GN0597)", "Tushar Misri (GN0171)", "Vaibhav Kumar (GN0307)", "Vardaan Pandit (GN0195)", "Vardan Singh (GN0386)", "Varun Kumar Kashyap (GN0588)", "Vashu Choudhary (GN0404)", "Vedaant Sooden (GN0507)", "Vikrant Baranwal (GN0545)", "Vipin Kumar (GN0555)", "Vishal Chauhan (GN0280)", "Vishal Mehta (GN0097)", "Yashika Gupta (GN0152)", "Yogesh Sharma (GN0485)", "Yuvraj Walia (GN0602)"], "operation": "add"}} 2025-02-03 09:57:17.771805+00 273 182 122.176.134.248 \N \N \N
4745 11 11 DefaultAccessibility object (11) 0 {"id": ["None", "11"], "filter": ["null", "{\\"exclude_all\\": [\\"on\\"], \\"feature\\": [\\"department_chart\\"]}"], "feature": ["None", "department_chart"], "is_active": ["None", "True"], "created_at": ["None", "2025-02-03 09:57:18.895217"], "created_by": ["None", "273"], "exclude_all": ["None", "True"], "modified_by": ["None", "273"]} 2025-02-03 09:57:18.90036+00 273 182 122.176.134.248 \N \N \N
4746 11 11 DefaultAccessibility object (11) 1 {"employees": {"type": "m2m", "objects": ["Aarohi Tiwari (GN0157)", "Aashish Nagar (GN0329)", "Aastha Mittal (GN0345)", "Abeer Aulakh (GN0364)", "Abhi Panwar (GN0533)", "Abhijeet (GN0500)", "Abhinav Dass (GN0579)", "Abhisek (GN0598)", "Abhishek Pathania (GN0185)", "Abhishek Panchal (GN0017)", "Abhishek (GN0574)", "Aditi Sharma (MA TEAM) (GN0308)", "Aditi Chauhan (GN0431)", "Admin GN ", "Ajay Sharma (GN0445)", "Ajit Singh (GN0344)", "Akanksha Dass (GN0421)", "Akanksha Thakur (GN0436)", "Akansha Negi (GN0553)", "Akash Pathania (GN0546)", "Akhil Yadav (GN0106)", "Akshay Singh (GN0278)", "Akshay Kurhade (GN0180)", "Akshit Issar (GN0592)", "Akshita Khanna (GN0503)", "Alisha Kapoor (GN0601)", "Aman Gota (GN0481)", "Aman Thakur (GN0530)", "Amman Masood (GN0524)", "Anant Chaudhary (GN0561)", "Ananta (GN0534)", "Angshu Das (GN0498)", "Anjali Rajput (GN0580)", "Anjali Gupta (GN0312)", "Anju Yadav (GN0512)", "Ankit Kumar (GN0584)", "Ankit Vashishth (GN0204)", "Ankit Chauhan (GN0413)", "Ankita Rana (GN0408)", "Anmol Sharma (GN0586)", "Anshu Kumari Gupta (GN0531)", "Anupriya Goyal (GN0239)", "Anuradha Mishra (GN0313)", "Arjun Thakur (GN0551)", "Arpit Goyal (GN0197)", "Arpit (GN0338)", "Arpit Srivastava (GN0277)", "Arshdeep Singh Multani (GN0501)", "Arshpreet Kaur (GN0583)", "Ashish Chauhan (GN0048)", "Ashish Malhoch (GN0383)", "Ashish Pathania (GN0402)", "Ashul Kumar (GN0523)", "Aviral Srivastav (GN0559)", "Baljinder Singh (GN0186)", "Balpreet Singh (GN0055)", "Barirah Roshin (GN0475)", "Bhag Singh (GN0334)", "Bhavika (GN0279)", "Bhavna Joshi (GN0082)", "Bhavya Soni (GN0447)", "Brijesh Kumar (GN0572)", "Chandan Deep (GN0525)", "Chandan Madaan (GN0176)", "Chandan Kumar (GN0381)", "Chhavinav (GN0039)", "Chirag Takkar (GN0144)", "Chirag Sharma (GN0502)", "Daksh Jethi (GN0537)", "Deepak Gaud (GN0417)", "Deepak Garg (GN0028)", "Deepanshi Arora (GN0542)", "Deepinder Singh (GN0604)", "Devesh Saxena (GN0259)", "Devesh Ojha (GN0566)", "Dharna Sharma (GN0099)", "Dhruv Jindal (GN0603)", "Diksha Gathania (GN0468)", "Diksha Sharma (GN0472)", "Dilbag Singh (GN0194)", "Dilraj Singh (GN0589)", "Durgesh Kumar (GN0350)", "Ekamonkar Singh (GN0587)", "Era Bhawra (GN0444)", "Eshu Arora (GN0147)", "Gagandeep Singh( design team) (GN0322)", "Gaurav Rajput (GN0001)", "Gaurav Saini (GN0556)", "Geeta Patial (GN0121)", "Geetanjali (GN0400)", "Gulshan Kumar (GN0084)", "Guntas Dhillon (GN0519)", "Gurdev Singh (GN0493)", "Gurkirat Singh (GN0440)", "Gurpreet Singh Saroye (GN0599)", "Gurpreet Singh (GN0543)", "Gurvinder Singh (GN0454)", "Harpuneet Singh (GN0150)", "Harsh Gautam (GN0484)", "Harsh Vardhan Pathak (GN0565)", "Harsh (GN0486)", "Harshika (GN0149)", "Harshika Chadha (GN0324)", "Harshita Joshi (GN0174)", "Hitakshi (GN0521)", "Hitika Saini (GN0398)", "Ikbal Singh (GN0011)", "Inayat Kaur (GN0578)", "Irfan Ahmad (GN0435)", "Ishan Shaurya (GN0358)", "Ishika Kashyap (GN0505)", "Ishika (GN0242)", "Ishtpreet Kaur (GN0209)", "Jagrit Sharma (GN0306)", "Janak Magotra (GN0492)", "Jashan Deep Sukhija (GN0066)", "Jashanpreet Singh Gill (GN0585)", "Jaskaran Singh (GN0063)", "Kamal Sharma (SFDC) (GN0526)", "Kamaljit Singh (GN0318)", "Karamjeet Singh Chauhan (GN0487)", "Karan Kaushal (GN0136)", "Kartik Singh Thakur (GN0496)", "Kartik Sharma (GN0499)", "Kartikey Khosla (GN0248)", "Kashish (GN0462)", "Kaushik Dhiman (GN0495)", "Keshav Sharma (GN0577)", "Kirandeep Singh (GN0416)", "Kirpal Singh (GN0225)", "Komal (GN0414)", "Kritika (GN0455)", "Lakshay (GN0453)", "Lavish Rana (GN0437)", "Leepakshi Saini (GN0511)", "Lokesh (GN0548)", "Mahesh Dattatraya Nirmal (GN0573)", "Mahika Aggarwal (GN0596)", "Malvika Chauhan (GN0203)", "Manica Kwatra (GN0337)", "Manoj Pandey (GN0471)", "Manpreet Kaur (GN0115)", "Manu Jamwal (GN0238)", "Mayank Sharma (GN0288)", "Mehak Hasija (GN0033)", "Mehakpreet Kaur (GN0538)", "Mohd Sufiyan (GN0311)", "Mohit Dharwal (GN0243)", "Mohit Arora (GN0518)", "Mohit Kumar (GN0027)", "Mridul Kumar (GN0591)", "Musawwir Ahamad Fani (GN0388)", "Muskaan (GN0390)", "Nakul Sharma (GN0552)", "Naman Katariya (GN0563)", "Nandini Sharma (GN0478)", "Neha Pandita (GN0593)", "Nikhil Singh (GN0320)", "Nikita Uppal (GN0564)", "Nishant Singh (GN0540)", "Nitin Rana (GN0233)", "Nitin Sharma (sale) (GN0216)", "Nitish Prabhakar (GN0131)", "Nitish Gupta (GN0428)", "Paras Sharma (GN0178)", "Parmveer Singh (GN0065)", "Pawan Joshi (GN0343)", "Piyush Ajay Bageshwar (GN0449)", "Praneet Kaur Dhillon (GN0567)", "Prashant Thakur (GN0339)", "Prateek Khatri (GN0571)", "Prem Sagar (GN0257)", "Prerna kaushal (GN0177)", "Prince Kumar Sharma (GN0332)", "Priya Dashore (GN0581)", "Purushotham Narayan (GN0380)", "Pushpa (GN0461)", "Rahul Verma (GN0429)", "Rahul Sharma (GN0019)", "Rahul Sindwani (GN0208)", "Rahul Sachdeva (GN0491)", "Rahul Kumar (GN0532)", "Rahul Sharma (SFDC) (GN0255)", "Rajnish Ranjan (GN0535)", "Rama Sharma (GN0528)", "Ramandeep Singh Bagga (GN0309)", "Ravideep Singh (GN0570)", "Ravina Garg (GN0228)", "Richa Bhardwaj (GN0482)", "Rimpy Sindhu (GN0450)", "Rinku Sharma (GN0240)", "Rishab Sharma (GN0430)", "Rishav Ranjan (GN0594)", "Ritik Badola (GN0411)", "Riya Sharma (GN0582)", "Rohan (GN0504)", "Rommel Datta (GN0396)", "Ruby Sindwani (GN0213)", "Rukman Singh (GN0062)", "Sachin Kumar (GN0412)", "Sachin Manocha (GN0474)", "Sachin (GN0527)", "Sahil Minhas (GN0557)", "Sahil Koundal (GN0576)", "Saksham Bhatia (GN0600)", "Sakshi Arora (GN0043)", "Saloni Apoorva (GN0184)", "Sameer Pawar (GN0427)", "Santosh Mandal (GN0490)", "Sanya Midha (GN0456)", "Satwinder Singh (GN0076)", "Saurabh Sharma (MA) (GN0442)", "Saurabh Goyal (GN0515)", "Sayam Sehgal (GN0360)", "Sehajpreet Singh (GN0142)", "Shagun Sharma (GN0130)", "Shahzad Musawwir Farid (GN0016)", "Shailendra Pratap (GN0038)", "Shaini Agnihotri (GN0595)", "Shakshi (GN0403)", "Shalini Chauhan (GN0059)", "Shami Kumar (GN0289)", "Sharmistha Dey (GN0271)", "Shipra Goyal (GN0135)", "Shiromani Bhatti (GN0418)", "Shivam Kathpal (GN0438)", "Shivam Joshi (GN0466)", "Shivam Kumar Pandey (GN0330)", "Shivam Setia (GN0465)", "Shivesh Sharma (GN0132)", "Shreya Narula (GN0590)", "Shubham Chaudhary (GN0181)", "Simran (GN0326)", "Simranjit Kaur (GN0506)", "Sneha (GN0522)", "Sneha Kumari (GN0549)", "Sonu Yadav (GN0494)", "Sourabh Dhadwal (GN0460)", "Sourabh (GN0221)", "Sourin Manna (GN0497)", "Sukhpreet Kaur (GN0047)", "Sumeet Rana (GN0054)", "Sumit Kumar Bhatt (GN0175)", "Suraj Singh Rawat (GN0179)", "Surya Gehlot (GN0382)", "Taran Bir Singh Nandha (GN0002)", "Tarun Kumar (GN0446)", "Tejinder Singh (GN0148)", "Tripatraj (GN0597)", "Tushar Misri (GN0171)", "Vaibhav Kumar (GN0307)", "Vardaan Pandit (GN0195)", "Vardan Singh (GN0386)", "Varun Kumar Kashyap (GN0588)", "Vashu Choudhary (GN0404)", "Vedaant Sooden (GN0507)", "Vikrant Baranwal (GN0545)", "Vipin Kumar (GN0555)", "Vishal Chauhan (GN0280)", "Vishal Mehta (GN0097)", "Yashika Gupta (GN0152)", "Yogesh Sharma (GN0485)", "Yuvraj Walia (GN0602)"], "operation": "add"}} 2025-02-03 09:57:20.020468+00 273 182 122.176.134.248 \N \N \N
4747 qg5ru6ba6xsdnp1x2y1htx6os7kb0qfq \N qg5ru6ba6xsdnp1x2y1htx6os7kb0qfq 0 {"expire_date": ["None", "2025-02-17 09:57:21.331087"], "session_key": ["None", "qg5ru6ba6xsdnp1x2y1htx6os7kb0qfq"], "session_data": ["None", "eyJ0aXRsZSI6IkRBU0hCT0FSRCJ9:1tetCj:aGjl47EDUZ6xUWVwRgAJ0N9g6sKhRpBqNbRSrs3LGbo"]} 2025-02-03 09:57:21.332297+00 \N 6 \N \N \N \N
4748 995y2txaw1ntpzsqfqx9mjzs82p3kkdg \N 995y2txaw1ntpzsqfqx9mjzs82p3kkdg 0 {"expire_date": ["None", "2025-02-17 09:57:22.034281"], "session_key": ["None", "995y2txaw1ntpzsqfqx9mjzs82p3kkdg"], "session_data": ["None", "eyJ0aXRsZSI6IkRBU0hCT0FSRCJ9:1tetCk:389eueeDWKYFSVR5AMQEz6bQguIdNP4bN2lnRqw_Dfc"]} 2025-02-03 09:57:22.036274+00 \N 6 \N \N \N \N
4749 12 12 DefaultAccessibility object (12) 0 {"id": ["None", "12"], "filter": ["null", "{\\"exclude_all\\": [\\"on\\"], \\"feature\\": [\\"employees_chart\\"]}"], "feature": ["None", "employees_chart"], "is_active": ["None", "True"], "created_at": ["None", "2025-02-03 09:57:22.712700"], "created_by": ["None", "273"], "exclude_all": ["None", "True"], "modified_by": ["None", "273"]} 2025-02-03 09:57:22.716588+00 273 182 122.176.134.248 \N \N \N
4750 12 12 DefaultAccessibility object (12) 1 {"employees": {"type": "m2m", "objects": ["Aarohi Tiwari (GN0157)", "Aashish Nagar (GN0329)", "Aastha Mittal (GN0345)", "Abeer Aulakh (GN0364)", "Abhi Panwar (GN0533)", "Abhijeet (GN0500)", "Abhinav Dass (GN0579)", "Abhisek (GN0598)", "Abhishek Pathania (GN0185)", "Abhishek Panchal (GN0017)", "Abhishek (GN0574)", "Aditi Sharma (MA TEAM) (GN0308)", "Aditi Chauhan (GN0431)", "Admin GN ", "Ajay Sharma (GN0445)", "Ajit Singh (GN0344)", "Akanksha Dass (GN0421)", "Akanksha Thakur (GN0436)", "Akansha Negi (GN0553)", "Akash Pathania (GN0546)", "Akhil Yadav (GN0106)", "Akshay Singh (GN0278)", "Akshay Kurhade (GN0180)", "Akshit Issar (GN0592)", "Akshita Khanna (GN0503)", "Alisha Kapoor (GN0601)", "Aman Gota (GN0481)", "Aman Thakur (GN0530)", "Amman Masood (GN0524)", "Anant Chaudhary (GN0561)", "Ananta (GN0534)", "Angshu Das (GN0498)", "Anjali Rajput (GN0580)", "Anjali Gupta (GN0312)", "Anju Yadav (GN0512)", "Ankit Kumar (GN0584)", "Ankit Vashishth (GN0204)", "Ankit Chauhan (GN0413)", "Ankita Rana (GN0408)", "Anmol Sharma (GN0586)", "Anshu Kumari Gupta (GN0531)", "Anupriya Goyal (GN0239)", "Anuradha Mishra (GN0313)", "Arjun Thakur (GN0551)", "Arpit Goyal (GN0197)", "Arpit (GN0338)", "Arpit Srivastava (GN0277)", "Arshdeep Singh Multani (GN0501)", "Arshpreet Kaur (GN0583)", "Ashish Chauhan (GN0048)", "Ashish Malhoch (GN0383)", "Ashish Pathania (GN0402)", "Ashul Kumar (GN0523)", "Aviral Srivastav (GN0559)", "Baljinder Singh (GN0186)", "Balpreet Singh (GN0055)", "Barirah Roshin (GN0475)", "Bhag Singh (GN0334)", "Bhavika (GN0279)", "Bhavna Joshi (GN0082)", "Bhavya Soni (GN0447)", "Brijesh Kumar (GN0572)", "Chandan Deep (GN0525)", "Chandan Madaan (GN0176)", "Chandan Kumar (GN0381)", "Chhavinav (GN0039)", "Chirag Takkar (GN0144)", "Chirag Sharma (GN0502)", "Daksh Jethi (GN0537)", "Deepak Gaud (GN0417)", "Deepak Garg (GN0028)", "Deepanshi Arora (GN0542)", "Deepinder Singh (GN0604)", "Devesh Saxena (GN0259)", "Devesh Ojha (GN0566)", "Dharna Sharma (GN0099)", "Dhruv Jindal (GN0603)", "Diksha Gathania (GN0468)", "Diksha Sharma (GN0472)", "Dilbag Singh (GN0194)", "Dilraj Singh (GN0589)", "Durgesh Kumar (GN0350)", "Ekamonkar Singh (GN0587)", "Era Bhawra (GN0444)", "Eshu Arora (GN0147)", "Gagandeep Singh( design team) (GN0322)", "Gaurav Rajput (GN0001)", "Gaurav Saini (GN0556)", "Geeta Patial (GN0121)", "Geetanjali (GN0400)", "Gulshan Kumar (GN0084)", "Guntas Dhillon (GN0519)", "Gurdev Singh (GN0493)", "Gurkirat Singh (GN0440)", "Gurpreet Singh Saroye (GN0599)", "Gurpreet Singh (GN0543)", "Gurvinder Singh (GN0454)", "Harpuneet Singh (GN0150)", "Harsh Gautam (GN0484)", "Harsh Vardhan Pathak (GN0565)", "Harsh (GN0486)", "Harshika (GN0149)", "Harshika Chadha (GN0324)", "Harshita Joshi (GN0174)", "Hitakshi (GN0521)", "Hitika Saini (GN0398)", "Ikbal Singh (GN0011)", "Inayat Kaur (GN0578)", "Irfan Ahmad (GN0435)", "Ishan Shaurya (GN0358)", "Ishika Kashyap (GN0505)", "Ishika (GN0242)", "Ishtpreet Kaur (GN0209)", "Jagrit Sharma (GN0306)", "Janak Magotra (GN0492)", "Jashan Deep Sukhija (GN0066)", "Jashanpreet Singh Gill (GN0585)", "Jaskaran Singh (GN0063)", "Kamal Sharma (SFDC) (GN0526)", "Kamaljit Singh (GN0318)", "Karamjeet Singh Chauhan (GN0487)", "Karan Kaushal (GN0136)", "Kartik Singh Thakur (GN0496)", "Kartik Sharma (GN0499)", "Kartikey Khosla (GN0248)", "Kashish (GN0462)", "Kaushik Dhiman (GN0495)", "Keshav Sharma (GN0577)", "Kirandeep Singh (GN0416)", "Kirpal Singh (GN0225)", "Komal (GN0414)", "Kritika (GN0455)", "Lakshay (GN0453)", "Lavish Rana (GN0437)", "Leepakshi Saini (GN0511)", "Lokesh (GN0548)", "Mahesh Dattatraya Nirmal (GN0573)", "Mahika Aggarwal (GN0596)", "Malvika Chauhan (GN0203)", "Manica Kwatra (GN0337)", "Manoj Pandey (GN0471)", "Manpreet Kaur (GN0115)", "Manu Jamwal (GN0238)", "Mayank Sharma (GN0288)", "Mehak Hasija (GN0033)", "Mehakpreet Kaur (GN0538)", "Mohd Sufiyan (GN0311)", "Mohit Dharwal (GN0243)", "Mohit Arora (GN0518)", "Mohit Kumar (GN0027)", "Mridul Kumar (GN0591)", "Musawwir Ahamad Fani (GN0388)", "Muskaan (GN0390)", "Nakul Sharma (GN0552)", "Naman Katariya (GN0563)", "Nandini Sharma (GN0478)", "Neha Pandita (GN0593)", "Nikhil Singh (GN0320)", "Nikita Uppal (GN0564)", "Nishant Singh (GN0540)", "Nitin Rana (GN0233)", "Nitin Sharma (sale) (GN0216)", "Nitish Prabhakar (GN0131)", "Nitish Gupta (GN0428)", "Paras Sharma (GN0178)", "Parmveer Singh (GN0065)", "Pawan Joshi (GN0343)", "Piyush Ajay Bageshwar (GN0449)", "Praneet Kaur Dhillon (GN0567)", "Prashant Thakur (GN0339)", "Prateek Khatri (GN0571)", "Prem Sagar (GN0257)", "Prerna kaushal (GN0177)", "Prince Kumar Sharma (GN0332)", "Priya Dashore (GN0581)", "Purushotham Narayan (GN0380)", "Pushpa (GN0461)", "Rahul Verma (GN0429)", "Rahul Sharma (GN0019)", "Rahul Sindwani (GN0208)", "Rahul Sachdeva (GN0491)", "Rahul Kumar (GN0532)", "Rahul Sharma (SFDC) (GN0255)", "Rajnish Ranjan (GN0535)", "Rama Sharma (GN0528)", "Ramandeep Singh Bagga (GN0309)", "Ravideep Singh (GN0570)", "Ravina Garg (GN0228)", "Richa Bhardwaj (GN0482)", "Rimpy Sindhu (GN0450)", "Rinku Sharma (GN0240)", "Rishab Sharma (GN0430)", "Rishav Ranjan (GN0594)", "Ritik Badola (GN0411)", "Riya Sharma (GN0582)", "Rohan (GN0504)", "Rommel Datta (GN0396)", "Ruby Sindwani (GN0213)", "Rukman Singh (GN0062)", "Sachin Kumar (GN0412)", "Sachin Manocha (GN0474)", "Sachin (GN0527)", "Sahil Minhas (GN0557)", "Sahil Koundal (GN0576)", "Saksham Bhatia (GN0600)", "Sakshi Arora (GN0043)", "Saloni Apoorva (GN0184)", "Sameer Pawar (GN0427)", "Santosh Mandal (GN0490)", "Sanya Midha (GN0456)", "Satwinder Singh (GN0076)", "Saurabh Sharma (MA) (GN0442)", "Saurabh Goyal (GN0515)", "Sayam Sehgal (GN0360)", "Sehajpreet Singh (GN0142)", "Shagun Sharma (GN0130)", "Shahzad Musawwir Farid (GN0016)", "Shailendra Pratap (GN0038)", "Shaini Agnihotri (GN0595)", "Shakshi (GN0403)", "Shalini Chauhan (GN0059)", "Shami Kumar (GN0289)", "Sharmistha Dey (GN0271)", "Shipra Goyal (GN0135)", "Shiromani Bhatti (GN0418)", "Shivam Kathpal (GN0438)", "Shivam Joshi (GN0466)", "Shivam Kumar Pandey (GN0330)", "Shivam Setia (GN0465)", "Shivesh Sharma (GN0132)", "Shreya Narula (GN0590)", "Shubham Chaudhary (GN0181)", "Simran (GN0326)", "Simranjit Kaur (GN0506)", "Sneha (GN0522)", "Sneha Kumari (GN0549)", "Sonu Yadav (GN0494)", "Sourabh Dhadwal (GN0460)", "Sourabh (GN0221)", "Sourin Manna (GN0497)", "Sukhpreet Kaur (GN0047)", "Sumeet Rana (GN0054)", "Sumit Kumar Bhatt (GN0175)", "Suraj Singh Rawat (GN0179)", "Surya Gehlot (GN0382)", "Taran Bir Singh Nandha (GN0002)", "Tarun Kumar (GN0446)", "Tejinder Singh (GN0148)", "Tripatraj (GN0597)", "Tushar Misri (GN0171)", "Vaibhav Kumar (GN0307)", "Vardaan Pandit (GN0195)", "Vardan Singh (GN0386)", "Varun Kumar Kashyap (GN0588)", "Vashu Choudhary (GN0404)", "Vedaant Sooden (GN0507)", "Vikrant Baranwal (GN0545)", "Vipin Kumar (GN0555)", "Vishal Chauhan (GN0280)", "Vishal Mehta (GN0097)", "Yashika Gupta (GN0152)", "Yogesh Sharma (GN0485)", "Yuvraj Walia (GN0602)"], "operation": "add"}} 2025-02-03 09:57:24.430992+00 273 182 122.176.134.248 \N \N \N
4751 fyxsld957tn6bzlb6dn827igmc8tcz3u \N fyxsld957tn6bzlb6dn827igmc8tcz3u 0 {"expire_date": ["None", "2025-02-17 09:57:31.958738"], "session_key": ["None", "fyxsld957tn6bzlb6dn827igmc8tcz3u"], "session_data": ["None", ".eJyrVirJLMlJVbJScnEM9nDydwxyUdJRSipKTUxJLirNTSpWsoquViotygGqyCgpKSi20tdPLSrQS0nNTcxLKUlNztDLL0rXB-rJS8wFGePuB2Sn5ZfmpShZlRSVptbqEKE9Jz89M0_fPi-1osQWySywMJpxsbUAwQA8BQ:1tetCt:ckJgnErKTlq46XbcpFplSfvDnkThaNAtSV__greG7mA"]} 2025-02-03 09:57:31.970722+00 \N 6 122.176.134.248 \N \N \N
4752 qg5ru6ba6xsdnp1x2y1htx6os7kb0qfq \N qg5ru6ba6xsdnp1x2y1htx6os7kb0qfq 2 {"expire_date": ["2025-02-17 09:57:21.733572", "None"], "session_key": ["qg5ru6ba6xsdnp1x2y1htx6os7kb0qfq", "None"], "session_data": [".eJyrVirJLMlJVbJScnEM9nDydwxyUdJRSipKTUxJLirNTSpWsoquViotygGqyCgpKSi20tdPLSrQS0nNTcxLKUlNztDLL0rXB-rJS8wFGePuB2Sn5ZfmpShZlRSVptbqEKE9Jz89M0_fPi-1osQWySywMJpxsbUAwQA8BQ:1tetCj:Y3uCVLCogAauEq-WRpvwTjACqBwM0vKUGlGp6dVvFrk", "None"]} 2025-02-03 09:57:32.004905+00 \N 6 122.176.134.248 \N \N \N
4753 516 516 chirag.takkar@growthnatives.com 1 {"last_login": ["None", "2025-02-03 09:57:32.025741"]} 2025-02-03 09:57:32.033495+00 \N 4 122.176.134.248 \N \N \N
4754 13 13 Chirag Takkar (GN0144) - charts 0 {"id": ["None", "13"], "charts": ["null", "[]"], "employee": ["None", "278"], "is_active": ["None", "True"], "created_at": ["None", "2025-02-03 09:57:32.622721"], "created_by": ["None", "516"], "modified_by": ["None", "516"]} 2025-02-03 09:57:32.628787+00 516 18 122.176.134.248 \N \N \N
4755 15 15 DriverViewed object (15) 0 {"id": ["None", "15"], "user": ["None", "516"], "viewed": ["None", "dashboard"]} 2025-02-03 09:57:37.179198+00 516 20 122.176.134.248 \N \N \N
5928 40 40 Tejinder Singh (GN0148) | Casual Leave 1 {"is_active": ["True", "False"], "modified_by": ["None", "273"], "available_days": ["6.0", "4.5"], "total_leave_days": ["6.0", "4.5"]} 2025-02-03 12:40:06.167749+00 273 89 122.176.134.248 \N \N \N
4756 pmidisiovyq5pslva89fhk01c6tj1kz7 \N pmidisiovyq5pslva89fhk01c6tj1kz7 0 {"expire_date": ["None", "2025-02-17 09:57:50.891260"], "session_key": ["None", "pmidisiovyq5pslva89fhk01c6tj1kz7"], "session_data": ["None", ".eJyrVirJLMlJVbJScnEM9nDydwxyUdJRSipKTUxJLirNTSpWsoquViotygGqyCgpKSi20tdPLSrQS0nNTcxLKUlNztDLL0rXB-rJS8wFGePuB2Sn5ZfmpShZlRSVptbqEKE9Jz89M0_fPi-1osQWySywMJpxsbUAwQA8BQ:1tetDC:qZKD4UoZsJuROsq7O0xcqWONKOVNOLW2OBQMK2EasmY"]} 2025-02-03 09:57:50.903388+00 \N 6 122.176.134.248 \N \N \N
4757 995y2txaw1ntpzsqfqx9mjzs82p3kkdg \N 995y2txaw1ntpzsqfqx9mjzs82p3kkdg 2 {"expire_date": ["2025-02-17 09:57:30.580244", "None"], "session_key": ["995y2txaw1ntpzsqfqx9mjzs82p3kkdg", "None"], "session_data": [".eJyrVirJLMlJVbJScnEM9nDydwxyUdJRSipKTUxJLirNTSpWsoquViotygGqyCgpKSi20tdPLSrQS0nNTcxLKUlNztDLL0rXB-rJS8wFGePuB2Sn5ZfmpShZlRSVptbqEKE9Jz89M0_fPi-1osQWySywMJpxsbUAwQA8BQ:1tetCs:0jLAI9qfyCqUo8LBKlaHSeUpCxhgzFolQ5aPspRFdhM", "None"]} 2025-02-03 09:57:50.964604+00 \N 6 122.176.134.248 \N \N \N
4758 512 512 mridul.kumar@growthnatives.com 1 {"last_login": ["None", "2025-02-03 09:57:51.021851"]} 2025-02-03 09:57:51.030855+00 \N 4 122.176.134.248 \N \N \N
4759 14 14 Mridul Kumar (GN0591) - charts 0 {"id": ["None", "14"], "charts": ["null", "[]"], "employee": ["None", "274"], "is_active": ["None", "True"], "created_at": ["None", "2025-02-03 09:57:51.432325"], "created_by": ["None", "512"], "modified_by": ["None", "512"]} 2025-02-03 09:57:51.437529+00 512 18 122.176.134.248 \N \N \N
4760 16 16 DriverViewed object (16) 0 {"id": ["None", "16"], "user": ["None", "512"], "viewed": ["None", "dashboard"]} 2025-02-03 09:57:54.526578+00 512 20 122.176.134.248 \N \N \N
4761 z83m0dqxpo2vnrg9frv4g2bi3rtsmwnl \N z83m0dqxpo2vnrg9frv4g2bi3rtsmwnl 0 {"expire_date": ["None", "2025-02-17 09:58:55.415046"], "session_key": ["None", "z83m0dqxpo2vnrg9frv4g2bi3rtsmwnl"], "session_data": ["None", ".eJyrVirJLMlJVbJScnEM9nDydwxyUdJRSipKTUxJLirNTSpWsoquViotygGqyCgpKSi20tdPLSrQS0nNTcxLKUlNztDLL0rXB-rJS8wFGePuB2Sn5ZfmpShZlRSVptbqEKE9Jz89Mw_JEDAfzZzYWgAg2jmb:1tetEF:z_KNw-rBmrtR1kOfB5Gd-bMArirPxwY9Gyzl-vaXwXI"]} 2025-02-03 09:58:55.416059+00 \N 6 14.195.60.42 \N \N \N
4762 0nllfy74joihe02wcvpw69evcgbvkv7c \N 0nllfy74joihe02wcvpw69evcgbvkv7c 2 {"expire_date": ["2025-02-17 09:58:02.803593", "None"], "session_key": ["0nllfy74joihe02wcvpw69evcgbvkv7c", "None"], "session_data": [".eJyrVirJLMlJVbJScnEM9nDydwxyUdJRSipKTUxJLirNTSpWsoquViotygGqyCgpKSi20tdPLSrQS0nNTcxLKUlNztDLL0rXB-rJS8wFGePuB2Sn5ZfmpShZlRSVptbqEKE9Jz89Mw_JEDAfzZzYWgAg2jmb:1tetDO:kzF3_KhU6EPVTEQ2e5ogOGQmXaR79hQcgrs4CaCbkeU", "None"]} 2025-02-03 09:58:55.420386+00 \N 6 14.195.60.42 \N \N \N
4763 534 534 rishav.rajan@growthnatives.co 1 {"last_login": ["None", "2025-02-03 09:58:55.421977"]} 2025-02-03 09:58:55.423072+00 \N 4 14.195.60.42 \N \N \N
4764 15 15 Rishav Ranjan (GN0594) - charts 0 {"id": ["None", "15"], "charts": ["null", "[]"], "employee": ["None", "296"], "is_active": ["None", "True"], "created_at": ["None", "2025-02-03 09:58:55.705207"], "created_by": ["None", "534"], "modified_by": ["None", "534"]} 2025-02-03 09:58:55.706884+00 534 18 14.195.60.42 \N \N \N
4765 17 17 DriverViewed object (17) 0 {"id": ["None", "17"], "user": ["None", "534"], "viewed": ["None", "dashboard"]} 2025-02-03 09:59:00.221718+00 534 20 14.195.60.42 \N \N \N
4766 512 512 mridul.kumar@growthnatives.com 1 {"password": ["pbkdf2_sha256$600000$gIlbdCxSSkI08lhqduwX3C$+6moN0cJcuVdq/xPaEYvn6i9iiaYilDOuSaJ4Dn9E5s=", "pbkdf2_sha256$600000$44wjAAcyFG3krccacbNYB7$uVhjMhZZhgRSrjOpVyqybRz/1ugWrj40AE8To4e5D3c="]} 2025-02-03 10:00:47.881029+00 512 4 122.176.134.248 \N \N \N
4767 pmidisiovyq5pslva89fhk01c6tj1kz7 \N pmidisiovyq5pslva89fhk01c6tj1kz7 2 {"expire_date": ["2025-02-17 10:00:38.024972", "None"], "session_key": ["pmidisiovyq5pslva89fhk01c6tj1kz7", "None"], "session_data": [".eJyNlEuP5EQQhP8K8oELud3OKj9HWiFAIy4scEVo1PKjZrrB_ZDtBlaj-e98MbS0s4gDB8tdlZmREZHpfs7Wwzql7C67__DzDz_9cn-fWdbPqRuH-Xrsl-zu1-fsOk8k7Nf1stxtt2m-bMZ07E7jmob95jw_bak5dUehfP8jvx_P19OY3a3zNb3Y_ygf9t3pKb27dMvy53ke38D9K_IJ-7GblvTyYNmuu6773XVJ8-7AfVZ6yD677bvh96SSbPwNsPNmOJ_W-dBvlLK5RZfNh_OYpm9vuZ8B7LtlT3U11n3ZhH7M49B6McS-blMKfXBPxTgUnlfF4-MwltXYDmM_dn0MqfEq9XXlqS0AXdKUhjWNu-F8vHSnj6B20_Qfgd3htKzdacCC5-xT8jfT9MV3t5NlB4S88fV6eNf90a3dvKDwuO0uh-3XcvE9VV_dqr6U3KdZFr6fmcD5CM6a_lpv4P-0OqRF8Fh2uk7TC54fpjXN0EvHy3T-mJLWIoTSysZCCOZlbpWb84S8Mc-D1Y0V0bzOrS6sLSxWFrw1zoH7EHKjpqSmLLjhKSvqc_O2tlhTWAJTck3IK2t0rMnkiQWZYNC8AC64tSQSZQIcKYhEK3i0YDr3pXi15pF0D1bVVjRWBSB4HDiKWrgE5NRgtFxH8rmDjjduoAV1QVZoiHCuSivIg3PI9YZhzVs1LchIQbPX_M7pgIYAPQc21GAi2Ut-v9LDKNg4EEEWOtQduEAjTHb8gEKo3Roi-BlamkYqmmgUh0i0AYh3C5aMl2EQlopC3glKglujxiWwlbO5NcAEXG04VvKLc6sZCghPIKujKxytwih6azp6lzQNMoD5k88osINgcFgVcpCyAEkNWXWFwUZtmIF8jPJUU5FMIWCTtFZY0_AbhxucDBKpXVMJy4UTzBAYgphOZqWhUARlbZOMYsbM1zXQIHNwnMk4xWgKpZZLrmKFurbqrL2RrZXp6FpPlpyTrIuGoqCFyBWAjhhIJTa6y6_ayI_qLRTEal01YW2RGHIldYWJVa3haJLa4sZqumsahVYlGtFSDkbTaBDjjcakVlzzmQXtlz4bFTWiIzOhIafw1-WzNjxqNbXANOCbEhn1korX1VRIe02aJOf5w5tPfuBv4jB26-s3__DyN781jKg:1tetFu:_t7dkR50WDuXnSzrM7IJN9kj5NJfUye5f72fHK_PxLU", "None"]} 2025-02-03 10:00:48.12786+00 512 6 122.176.134.248 \N \N \N
4768 512 512 mridul.kumar@growthnatives.com 1 {"last_login": ["2025-02-03 09:57:51.021851", "2025-02-03 10:00:48.129962"]} 2025-02-03 10:00:48.130962+00 512 4 122.176.134.248 \N \N \N
4769 l0q95kd9ygbljqv4k71c72mkrm73vo11 \N l0q95kd9ygbljqv4k71c72mkrm73vo11 0 {"expire_date": ["None", "2025-02-17 10:00:48.135345"], "session_key": ["None", "l0q95kd9ygbljqv4k71c72mkrm73vo11"], "session_data": ["None", ".eJxVjEEOwiAQRe_C2pBCO0zr0r1nIDMD2KqBpLQr492VpAvN3_338l7K077Nfq9x9UtQZwXGqtPvyySPmBsKd8q3oqXkbV1YN0UftOprCfF5Ody_wEx1buEpJdPhJOI6ZuMEOgtWeiehB2TgmAx8R3boGQFHQoQhTAOCpZhG9f4AHPQ3rA:1tetG4:39ms0XpPXgAYO7K3kNkS8KhQHjAouWizpCdHU5s67xc"]} 2025-02-03 10:00:48.136181+00 \N 6 \N \N \N \N
4770 7txe3w2yfdaub1qvbd96iiknynttv89e \N 7txe3w2yfdaub1qvbd96iiknynttv89e 2 {"expire_date": ["2025-02-17 10:03:33.216214", "None"], "session_key": ["7txe3w2yfdaub1qvbd96iiknynttv89e", "None"], "session_data": [".eJydlE9v5EQQxb8K8oHL1k7c3f7TjrRCgCIuLHBdoSjqsXsyBs9MZHsCqyjfnd8LI20icUB7cMbdVfXqvVflPBXbOaehn8-H7VJc__5UnOepuC726_qwXF9d5flhM-RDOg5r7veb03x_VVhxTIdM0k-_8L47nY9Dcb3O5_xs_6N8yukxvwJ5OX81zpyXdR779f3jmP96hfrm_gv6Lk1Lfr614i6d1_3decnz3ch9Ubu6eHO7Tf2fWSXF8Ec63p82_ekI4najlM0lumw-noY8_XDJfQOwT8ueat-32y762Je72PQ59f02bLu-b-puqFIfdrnKoQ9D1WzLbW7429TbfpeGMrcuRQfokqfcr3m460-Hh3T8DGqapv8I3I3HZU3HHgOeii_J30_TNz9eTlaMCHnl7Hl8nx7TmuYFhYer9DBefScPP1D17lL1reTez7Lww8wMTgdw1vz3egH_t9WYF8Fj2fE8Tc9kjOukWdx8_O3nXz_d3GgM47TmGcb58DCdPuesnfO-tjqa995cXVrjzPH4MporvbXRqmCuLa2trKssNOZdZ5w9996XRk1NTV1xw1M31JfmutZCS2ENTM01IddY1LElkydUZIJB8wo476wjkagraeIpCEQbeHRgOu5r8erMBdKdt6a1KlrjgeBxwFHUwcUjpwWj4zqQzx10XHQGmlcXZPlIhHNTW0UenH2pXxi2_KqmAxkpaHYt7yUd0OCh54D1LZhIdjXvL_QwCjYOCC8LHdQdcJ5GmOzwAwq-dRaJ4KfvaBqoiMEo9oFoBIjfDiwZL8MgLBWVvBOUBHdGjZPATs6WFoHxuBo5NvKLc6cZCghPIKujUzhYg1H01nT0W9PUywDmTz6jwA6C3sGqkoOUeUhqyKqrDDZqwwzkY5CnmopkCgGbpLXBmsg7Dkec9BKpXVMJy4UTzBAYgphOZqOhUARlbZOMYsbM12mgXubgOJNxFKPJ11ouuYoV6tqps_ZGtjamo9N6suScZF0wFHktRKkAdMRAKrHROfnVGvlBvYWCWK2rJqwtEkOupK4ysWo1HE1SWxytpbumUWlVghGt5WAwjQYxLmpMasU1n5nXfumzUVEUHZkJDTmFv04-a8ODVlMLTAO-KZFRL6l4WU2FtNekSXJZ3r765Hv-c4xDWl---dvnfwCFf6bQ:1tetIj:Q_mq_OLLyRAI2kcLihTerwVUTdRmICESU-qC1TAblD4", "None"]} 2025-02-03 10:03:37.274525+00 515 6 122.176.134.248 \N \N \N
6130 76 76 Alisha Kapoor (GN0601) | Casual Leave 1 {"is_active": ["True", "False"], "reset_date": ["None", "2025-12-31"], "modified_by": ["None", "273"], "available_days": ["6.0", "1.0"], "total_leave_days": ["0.0", "1.0"]} 2025-02-03 13:22:19.223002+00 273 89 122.176.134.248 \N \N \N
4771 6tx24yd5dv38rylw5i2u2jl8ol2ku22o \N 6tx24yd5dv38rylw5i2u2jl8ol2ku22o 0 {"expire_date": ["None", "2025-02-17 10:03:37.807824"], "session_key": ["None", "6tx24yd5dv38rylw5i2u2jl8ol2ku22o"], "session_data": ["None", ".eJyrVkoqSk1MSS4qzU0qVrKKrlYqLcpRslLKKCkpKLbS108tKtBLSc1NzEspSU3O0MsvStdX0lHKS8xNBSpy9wOy0_JL81KUrEqKSlNrdYjQnpOfnpmHZAiYj2ZObC0Aisk0Aw:1tetIn:UK7dICSywXARgyRMRKxVgwUUA8bu7AmiPhprtOdql48"]} 2025-02-03 10:03:37.809127+00 \N 6 \N \N \N \N
4772 ds90vhik2aj88mqz0nky3dmrqciuiasp \N ds90vhik2aj88mqz0nky3dmrqciuiasp 0 {"expire_date": ["None", "2025-02-17 10:03:49.243123"], "session_key": ["None", "ds90vhik2aj88mqz0nky3dmrqciuiasp"], "session_data": ["None", ".eJyrVkoqSk1MSS4qzU0qVrKKrlYqLcpRslLKKCkpKLbS108tKtBLSc1NzEspSU3O0MsvStdX0lHKS8xNBSpy9wOy0_JL81KUrEqKSlNrdYjQnpOfnpmHZAiYj2ZObC0Aisk0Aw:1tetIz:4dB7TQF9E195xYAJ33l21WOdjYkO-6-yg4BIMrqaXdA"]} 2025-02-03 10:03:49.243935+00 \N 6 122.176.134.248 \N \N \N
4773 6tx24yd5dv38rylw5i2u2jl8ol2ku22o \N 6tx24yd5dv38rylw5i2u2jl8ol2ku22o 2 {"expire_date": ["2025-02-17 10:03:38.121391", "None"], "session_key": ["6tx24yd5dv38rylw5i2u2jl8ol2ku22o", "None"], "session_data": [".eJyrVkoqSk1MSS4qzU0qVrKKrlYqLcpRslLKKCkpKLbS108tKtBLSc1NzEspSU3O0MsvStdX0lHKS8xNBSpy9wOy0_JL81KUrEqKSlNrdYjQnpOfnpmHZAiYj2ZObC0Aisk0Aw:1tetIo:HqR5LUJ_xq3r2JNWekU0mjDP9b8T6vs_SleLH_8a1lk", "None"]} 2025-02-03 10:03:49.247173+00 \N 6 122.176.134.248 \N \N \N
4774 273 273 Admin 1 {"last_login": ["2025-02-03 09:56:40.815334", "2025-02-03 10:03:49.248798"]} 2025-02-03 10:03:49.249643+00 \N 4 122.176.134.248 \N \N \N
4775 3 3 Compensatory Leave Type 0 {"id": ["None", "3"], "icon": ["None", ""], "name": ["None", "Compensatory Leave Type"], "count": ["None", "1"], "reset": ["None", "False"], "payment": ["None", "paid"], "is_active": ["None", "True"], "period_in": ["None", "day"], "created_at": ["None", "2025-02-03 10:05:22.127486"], "created_by": ["None", "273"], "total_days": ["None", "1"], "limit_leave": ["None", "True"], "modified_by": ["None", "273"], "reset_month": ["None", ""], "is_encashable": ["None", "False"], "exclude_holiday": ["None", "no"], "require_approval": ["None", "yes"], "carryforward_type": ["None", "no carryforward"], "require_attachment": ["None", "no"], "exclude_company_leave": ["None", "no"], "is_compensatory_leave": ["None", "True"], "employee_available_leave": ["None", "leave.AvailableLeave.None"]} 2025-02-03 10:05:22.134882+00 273 94 122.176.134.248 \N \N \N
4776 2 2 EmployeePastLeaveRestrict object (2) 0 {"id": ["None", "2"], "enabled": ["None", "True"], "is_active": ["None", "True"], "created_at": ["None", "2025-02-03 10:05:24.291006"], "created_by": ["None", "273"], "modified_by": ["None", "273"]} 2025-02-03 10:05:24.296213+00 273 106 122.176.134.248 \N \N \N
4777 zs4nmuxbcqi20jxa1pm13hksevtlemqw \N zs4nmuxbcqi20jxa1pm13hksevtlemqw 0 {"expire_date": ["None", "2025-02-17 10:08:05.598716"], "session_key": ["None", "zs4nmuxbcqi20jxa1pm13hksevtlemqw"], "session_data": ["None", ".eJyrVkoqSk1MSS4qzU0qVrKKrlYqLcpRslLKKCkpKLbS108tKtBLSc1NzEspSU3O0MsvStdX0lHKS8xNBSpy9wOy0_JL81KUrEqKSlNrdYjQnpOfnpmHZAiYj2ZObC0Aisk0Aw:1tetN7:JBb1Pls004-Dwq0rXca9yZJksCdaMaKDs2oisgR0DLM"]} 2025-02-03 10:08:05.599894+00 \N 6 \N \N \N \N
4778 x6o4bdp9cmsmss91966s5zvi788hshkm \N x6o4bdp9cmsmss91966s5zvi788hshkm 0 {"expire_date": ["None", "2025-02-17 10:08:21.603035"], "session_key": ["None", "x6o4bdp9cmsmss91966s5zvi788hshkm"], "session_data": ["None", ".eJyrVkoqSk1MSS4qzU0qVrKKrlYqLcpRslLKKCkpKLbS108tKtBLSc1NzEspSU3O0MsvStdX0lHKS8xNBSpy9wOy0_JL81KUrEqKSlNrdYjQnpOfnpmHZAiYj2ZObC0Aisk0Aw:1tetNN:h31TIS1GGe9m2p0Lg0Dft-jjJuiV1BxBAS7xaePpQ8w"]} 2025-02-03 10:08:21.604119+00 \N 6 122.176.134.248 \N \N \N
4779 zs4nmuxbcqi20jxa1pm13hksevtlemqw \N zs4nmuxbcqi20jxa1pm13hksevtlemqw 2 {"expire_date": ["2025-02-17 10:08:05.598716", "None"], "session_key": ["zs4nmuxbcqi20jxa1pm13hksevtlemqw", "None"], "session_data": [".eJyrVkoqSk1MSS4qzU0qVrKKrlYqLcpRslLKKCkpKLbS108tKtBLSc1NzEspSU3O0MsvStdX0lHKS8xNBSpy9wOy0_JL81KUrEqKSlNrdYjQnpOfnpmHZAiYj2ZObC0Aisk0Aw:1tetN7:JBb1Pls004-Dwq0rXca9yZJksCdaMaKDs2oisgR0DLM", "None"]} 2025-02-03 10:08:21.608358+00 \N 6 122.176.134.248 \N \N \N
4780 273 273 Admin 1 {"last_login": ["2025-02-03 10:03:49.248798", "2025-02-03 10:08:21.609969"]} 2025-02-03 10:08:21.611122+00 \N 4 122.176.134.248 \N \N \N
4781 nmi7h3nwfxzt3p02jjtgtb546t5ar48w \N nmi7h3nwfxzt3p02jjtgtb546t5ar48w 0 {"expire_date": ["None", "2025-02-17 10:09:01.651689"], "session_key": ["None", "nmi7h3nwfxzt3p02jjtgtb546t5ar48w"], "session_data": ["None", "eyJ0aXRsZSI6IkRBU0hCT0FSRCJ9:1tetO1:JKijnuplbWqojzr-P0uPXxn-T3heZsuAS3Q2QwNNJIY"]} 2025-02-03 10:09:01.653528+00 \N 6 \N \N \N \N
4782 nfbg7slye3uen14oqcqovh0ew0p2evjl \N nfbg7slye3uen14oqcqovh0ew0p2evjl 0 {"expire_date": ["None", "2025-02-17 10:09:21.865707"], "session_key": ["None", "nfbg7slye3uen14oqcqovh0ew0p2evjl"], "session_data": ["None", ".eJyrVirJLMlJVbJScnEM9nDydwxyUdJRSipKTUxJLirNTSpWsoquViotygGqyCgpKSi20tdPLSrQS0nNTcxLKUlNztDLL0rXB-rJS8wFGePuB2Sn5ZfmpShZlRSVptbqEKE9Jz89M0_fPi-1osQWySywMJpxsbUAwQA8BQ:1tetOL:EHOIZ2AfSj7fY0WZ3oyIuk7t5RXxKcgLRpQXFHm1oy0"]} 2025-02-03 10:09:21.866632+00 \N 6 122.176.134.250 \N \N \N
4783 nmi7h3nwfxzt3p02jjtgtb546t5ar48w \N nmi7h3nwfxzt3p02jjtgtb546t5ar48w 2 {"expire_date": ["2025-02-17 10:09:02.018976", "None"], "session_key": ["nmi7h3nwfxzt3p02jjtgtb546t5ar48w", "None"], "session_data": [".eJyrVirJLMlJVbJScnEM9nDydwxyUdJRSipKTUxJLirNTSpWsoquViotygGqyCgpKSi20tdPLSrQS0nNTcxLKUlNztDLL0rXB-rJS8wFGePuB2Sn5ZfmpShZlRSVptbqEKE9Jz89M0_fPi-1osQWySywMJpxsbUAwQA8BQ:1tetO2:fGjvxr0OmGDnzGyJUKQMCcE7UtDd5aKwj2o9Bp5z3zg", "None"]} 2025-02-03 10:09:21.871437+00 \N 6 122.176.134.250 \N \N \N
4784 517 517 shipra.goyal@growthnatives.com 1 {"last_login": ["None", "2025-02-03 10:09:21.873477"]} 2025-02-03 10:09:21.874751+00 \N 4 122.176.134.250 \N \N \N
4785 16 16 Shipra Goyal (GN0135) - charts 0 {"id": ["None", "16"], "charts": ["null", "[]"], "employee": ["None", "279"], "is_active": ["None", "True"], "created_at": ["None", "2025-02-03 10:09:22.169927"], "created_by": ["None", "517"], "modified_by": ["None", "517"]} 2025-02-03 10:09:22.171124+00 517 18 122.176.134.250 \N \N \N
4786 18 18 DriverViewed object (18) 0 {"id": ["None", "18"], "user": ["None", "517"], "viewed": ["None", "dashboard"]} 2025-02-03 10:09:27.108847+00 517 20 122.176.134.250 \N \N \N
4795 5 5 Work From Home 0 {"id": ["None", "5"], "contracts": ["None", "payroll.Contract.None"], "is_active": ["None", "True"], "work_type": ["None", "Work From Home"], "created_at": ["None", "2025-02-03 10:14:38.360783"], "created_by": ["None", "273"], "work_type1": ["None", "base.RotatingWorkType.None"], "work_type2": ["None", "base.RotatingWorkType.None"], "modified_by": ["None", "273"], "next_work_type": ["None", "base.RotatingWorkTypeAssign.None"], "current_work_type": ["None", "base.RotatingWorkTypeAssign.None"], "previous_work_type": ["None", "base.WorkTypeRequest.None"], "requested_work_type": ["None", "base.WorkTypeRequest.None"]} 2025-02-03 10:14:38.372252+00 273 48 122.176.134.248 \N \N \N
10081 435 435 Nitin Rana (GN0233) | Earn Leave 1 {"is_active": ["True", "False"], "modified_by": ["None", "273"], "available_days": ["1.0", "6.0"], "total_leave_days": ["0.0", "6.0"]} 2025-02-04 05:54:31.449186+00 273 89 122.176.134.248 \N \N \N
4787 4 4 Casual Leave 0 {"id": ["None", "4"], "icon": ["None", ""], "name": ["None", "Casual Leave"], "color": ["None", "#000000"], "count": ["None", "6.0"], "reset": ["None", "True"], "payment": ["None", "paid"], "is_active": ["None", "True"], "period_in": ["None", "day"], "reset_day": ["None", "31"], "created_at": ["None", "2025-02-03 10:11:35.498922"], "created_by": ["None", "273"], "total_days": ["None", "6.0"], "limit_leave": ["None", "True"], "modified_by": ["None", "273"], "reset_based": ["None", "yearly"], "reset_month": ["None", "12"], "is_encashable": ["None", "False"], "exclude_holiday": ["None", "yes"], "carryforward_max": ["None", "5.0"], "require_approval": ["None", "yes"], "carryforward_type": ["None", "carryforward"], "require_attachment": ["None", "no"], "exclude_company_leave": ["None", "yes"], "is_compensatory_leave": ["None", "False"], "carryforward_expire_date": ["None", "2025-02-03"], "employee_available_leave": ["None", "leave.AvailableLeave.None"]} 2025-02-03 10:11:35.502044+00 273 94 122.176.134.248 \N \N \N
4788 5 5 Intern Casual Leave 0 {"id": ["None", "5"], "icon": ["None", ""], "name": ["None", "Intern Casual Leave"], "color": ["None", "#000000"], "count": ["None", "1.0"], "reset": ["None", "True"], "payment": ["None", "paid"], "is_active": ["None", "True"], "period_in": ["None", "day"], "reset_day": ["None", "last day"], "created_at": ["None", "2025-02-03 10:13:02.333681"], "created_by": ["None", "273"], "total_days": ["None", "1.0"], "limit_leave": ["None", "True"], "modified_by": ["None", "273"], "reset_based": ["None", "monthly"], "reset_month": ["None", ""], "is_encashable": ["None", "False"], "exclude_holiday": ["None", "yes"], "require_approval": ["None", "yes"], "carryforward_type": ["None", "no carryforward"], "require_attachment": ["None", "no"], "exclude_company_leave": ["None", "yes"], "is_compensatory_leave": ["None", "False"], "carryforward_expire_date": ["None", "2025-02-03"], "employee_available_leave": ["None", "leave.AvailableLeave.None"]} 2025-02-03 10:13:02.33841+00 273 94 122.176.134.248 \N \N \N
4789 72 72 Lokesh (GN0548) | Intern Casual Leave as of 2025-02-03 10:13:02.355999+00:00 0 {"id": ["None", "28"], "is_active": ["None", "True"], "created_at": ["None", "2025-02-03 10:13:02.351675"], "created_by": ["None", "273"], "history_id": ["None", "72"], "reset_date": ["None", "2025-02-28 10:13:02.350729+00:00"], "employee_id": ["None", "275"], "modified_by": ["None", "273"], "history_date": ["None", "2025-02-03 10:13:02.355999"], "history_type": ["None", "+"], "history_user": ["None", "273"], "assigned_date": ["None", "2025-02-03 10:13:02.350729+00:00"], "leave_type_id": ["None", "5"], "available_days": ["None", "1.0"], "history_relation": ["None", "28"], "total_leave_days": ["None", "1.0"], "carryforward_days": ["None", "0"], "history_highlight": ["None", "False"]} 2025-02-03 10:13:02.364757+00 273 105 122.176.134.248 \N \N \N
4790 28 28 Lokesh (GN0548) | Intern Casual Leave 0 {"id": ["None", "28"], "is_active": ["None", "True"], "created_at": ["None", "2025-02-03 10:13:02.351675"], "created_by": ["None", "273"], "reset_date": ["None", "2025-02-28 10:13:02.350729+00:00"], "employee_id": ["None", "275"], "history_set": ["None", "leave.HistoricalAvailableLeave.None"], "modified_by": ["None", "273"], "assigned_date": ["None", "2025-02-03 10:13:02.350729+00:00"], "leave_type_id": ["None", "5"], "available_days": ["None", "1.0"], "total_leave_days": ["None", "1.0"], "carryforward_days": ["None", "0"]} 2025-02-03 10:13:02.369973+00 273 89 122.176.134.248 \N \N \N
4791 73 73 Rishav Ranjan (GN0594) | Intern Casual Leave as of 2025-02-03 10:13:02.379981+00:00 0 {"id": ["None", "29"], "is_active": ["None", "True"], "created_at": ["None", "2025-02-03 10:13:02.378298"], "created_by": ["None", "273"], "history_id": ["None", "73"], "reset_date": ["None", "2025-02-28 10:13:02.377810+00:00"], "employee_id": ["None", "296"], "modified_by": ["None", "273"], "history_date": ["None", "2025-02-03 10:13:02.379981"], "history_type": ["None", "+"], "history_user": ["None", "273"], "assigned_date": ["None", "2025-02-03 10:13:02.377810+00:00"], "leave_type_id": ["None", "5"], "available_days": ["None", "1.0"], "history_relation": ["None", "29"], "total_leave_days": ["None", "1.0"], "carryforward_days": ["None", "0"], "history_highlight": ["None", "False"]} 2025-02-03 10:13:02.38644+00 273 105 122.176.134.248 \N \N \N
4792 29 29 Rishav Ranjan (GN0594) | Intern Casual Leave 0 {"id": ["None", "29"], "is_active": ["None", "True"], "created_at": ["None", "2025-02-03 10:13:02.378298"], "created_by": ["None", "273"], "reset_date": ["None", "2025-02-28 10:13:02.377810+00:00"], "employee_id": ["None", "296"], "history_set": ["None", "leave.HistoricalAvailableLeave.None"], "modified_by": ["None", "273"], "assigned_date": ["None", "2025-02-03 10:13:02.377810+00:00"], "leave_type_id": ["None", "5"], "available_days": ["None", "1.0"], "total_leave_days": ["None", "1.0"], "carryforward_days": ["None", "0"]} 2025-02-03 10:13:02.390768+00 273 89 122.176.134.248 \N \N \N
4793 74 74 Sahil Koundal (GN0576) | Intern Casual Leave as of 2025-02-03 10:13:02.400214+00:00 0 {"id": ["None", "30"], "is_active": ["None", "True"], "created_at": ["None", "2025-02-03 10:13:02.398542"], "created_by": ["None", "273"], "history_id": ["None", "74"], "reset_date": ["None", "2025-02-28 10:13:02.398048+00:00"], "employee_id": ["None", "297"], "modified_by": ["None", "273"], "history_date": ["None", "2025-02-03 10:13:02.400214"], "history_type": ["None", "+"], "history_user": ["None", "273"], "assigned_date": ["None", "2025-02-03 10:13:02.398048+00:00"], "leave_type_id": ["None", "5"], "available_days": ["None", "1.0"], "history_relation": ["None", "30"], "total_leave_days": ["None", "1.0"], "carryforward_days": ["None", "0"], "history_highlight": ["None", "False"]} 2025-02-03 10:13:02.406722+00 273 105 122.176.134.248 \N \N \N
4794 30 30 Sahil Koundal (GN0576) | Intern Casual Leave 0 {"id": ["None", "30"], "is_active": ["None", "True"], "created_at": ["None", "2025-02-03 10:13:02.398542"], "created_by": ["None", "273"], "reset_date": ["None", "2025-02-28 10:13:02.398048+00:00"], "employee_id": ["None", "297"], "history_set": ["None", "leave.HistoricalAvailableLeave.None"], "modified_by": ["None", "273"], "assigned_date": ["None", "2025-02-03 10:13:02.398048+00:00"], "leave_type_id": ["None", "5"], "available_days": ["None", "1.0"], "total_leave_days": ["None", "1.0"], "carryforward_days": ["None", "0"]} 2025-02-03 10:13:02.411025+00 273 89 122.176.134.248 \N \N \N
4796 4 4 Full Time 0 {"id": ["None", "4"], "color": ["None", "#ffffff"], "title": ["None", "Full Time"], "is_active": ["None", "True"], "created_at": ["None", "2025-02-03 10:15:04.603486"], "created_by": ["None", "273"], "modified_by": ["None", "273"]} 2025-02-03 10:15:04.609017+00 273 54 122.176.134.248 \N \N \N
4798 2089 2089 Bhavika (GN0279) - UI Developer - (Development - GN) as of 2025-02-03 10:16:59.123303+00:00 0 {"id": ["None", "275"], "email": ["None", "bhavika.verma@growthnatives.com"], "location": ["None", "Mohali"], "shift_id": ["None", "2"], "experience": ["None", "0.0"], "history_id": ["None", "2089"], "employee_id": ["None", "276"], "salary_hour": ["None", "0"], "basic_salary": ["None", "0"], "date_joining": ["None", "2022-02-15"], "history_date": ["None", "2025-02-03 10:16:59.123303"], "history_type": ["None", "~"], "history_user": ["None", "273"], "work_type_id": ["None", "4"], "department_id": ["None", "18"], "job_position_id": ["None", "188"], "employee_type_id": ["None", "3"], "history_relation": ["None", "275"], "history_highlight": ["None", "False"]} 2025-02-03 10:16:59.130347+00 273 59 122.176.134.248 \N \N \N
4799 275 275 Bhavika (GN0279) - UI Developer - (Development - GN) 1 {"tags": {"type": "m2m", "objects": ["Full Time"], "operation": "add"}} 2025-02-03 10:16:59.142569+00 273 55 122.176.134.248 \N \N \N
4800 66 66 Admin GN Your work details has been updated. 0 minutes ago 0 {"id": ["None", "66"], "data": ["null", "{\\"icon\\": \\"briefcase\\", \\"redirect\\": \\"/employee/employee-profile/\\", \\"verb_ar\\": \\"\\\\u062a\\\\u0645 \\\\u062a\\\\u062d\\\\u062f\\\\u064a\\\\u062b \\\\u062a\\\\u0641\\\\u0627\\\\u0635\\\\u064a\\\\u0644 \\\\u0639\\\\u0645\\\\u0644\\\\u0643.\\", \\"verb_de\\": \\"Ihre Arbeitsdetails wurden aktualisiert.\\", \\"verb_es\\": \\"Se han actualizado los detalles de su trabajo.\\", \\"verb_fr\\": \\"Vos informations professionnelles ont \\\\u00e9t\\\\u00e9 mises \\\\u00e0 jour.\\"}"], "verb": ["None", "Your work details has been updated."], "actor": ["None", "Admin GN "], "level": ["None", "info"], "public": ["None", "True"], "unread": ["None", "True"], "deleted": ["None", "False"], "emailed": ["None", "False"], "verb_ar": ["None", "تم تحديث تفاصيل عملك."], "verb_de": ["None", "Ihre Arbeitsdetails wurden aktualisiert."], "verb_en": ["None", ""], "verb_es": ["None", "Se han actualizado los detalles de su trabajo."], "verb_fr": ["None", "Vos informations professionnelles ont été mises à jour."], "recipient": ["None", "514"], "timestamp": ["None", "2025-02-03 10:16:59.145057"], "actor_object_id": ["None", "36"], "actor_content_type": ["None", "53"]} 2025-02-03 10:16:59.149962+00 273 7 122.176.134.248 \N \N \N
4801 2090 2090 Chhavinav (GN0039) - Solution Architect - (Development - GN) as of 2025-02-03 10:17:42.208891+00:00 0 {"id": ["None", "294"], "email": ["None", "chhavinav.sehgal@growthnatives.com"], "location": ["None", "Mohali"], "shift_id": ["None", "2"], "experience": ["None", "0.0"], "history_id": ["None", "2090"], "employee_id": ["None", "295"], "salary_hour": ["None", "0"], "basic_salary": ["None", "0"], "date_joining": ["None", "2020-07-15"], "history_date": ["None", "2025-02-03 10:17:42.208891"], "history_type": ["None", "~"], "history_user": ["None", "273"], "work_type_id": ["None", "4"], "department_id": ["None", "18"], "job_position_id": ["None", "194"], "employee_type_id": ["None", "3"], "history_relation": ["None", "294"], "history_highlight": ["None", "False"], "reporting_manager_id": ["None", "288"]} 2025-02-03 10:17:42.217134+00 273 59 122.176.134.248 \N \N \N
4802 294 294 Chhavinav (GN0039) - Solution Architect - (Development - GN) 1 {"tags": {"type": "m2m", "objects": ["Full Time"], "operation": "add"}} 2025-02-03 10:17:42.230827+00 273 55 122.176.134.248 \N \N \N
4803 67 67 Admin GN Your work details has been updated. 0 minutes ago 0 {"id": ["None", "67"], "data": ["null", "{\\"icon\\": \\"briefcase\\", \\"redirect\\": \\"/employee/employee-profile/\\", \\"verb_ar\\": \\"\\\\u062a\\\\u0645 \\\\u062a\\\\u062d\\\\u062f\\\\u064a\\\\u062b \\\\u062a\\\\u0641\\\\u0627\\\\u0635\\\\u064a\\\\u0644 \\\\u0639\\\\u0645\\\\u0644\\\\u0643.\\", \\"verb_de\\": \\"Ihre Arbeitsdetails wurden aktualisiert.\\", \\"verb_es\\": \\"Se han actualizado los detalles de su trabajo.\\", \\"verb_fr\\": \\"Vos informations professionnelles ont \\\\u00e9t\\\\u00e9 mises \\\\u00e0 jour.\\"}"], "verb": ["None", "Your work details has been updated."], "actor": ["None", "Admin GN "], "level": ["None", "info"], "public": ["None", "True"], "unread": ["None", "True"], "deleted": ["None", "False"], "emailed": ["None", "False"], "verb_ar": ["None", "تم تحديث تفاصيل عملك."], "verb_de": ["None", "Ihre Arbeitsdetails wurden aktualisiert."], "verb_en": ["None", ""], "verb_es": ["None", "Se han actualizado los detalles de su trabajo."], "verb_fr": ["None", "Vos informations professionnelles ont été mises à jour."], "recipient": ["None", "533"], "timestamp": ["None", "2025-02-03 10:17:42.233580"], "actor_object_id": ["None", "36"], "actor_content_type": ["None", "53"]} 2025-02-03 10:17:42.2388+00 273 7 122.176.134.248 \N \N \N
4804 2091 2091 Chirag Takkar (GN0144) - Software Engineer - (Development - GN) as of 2025-02-03 10:18:00.269826+00:00 0 {"id": ["None", "277"], "email": ["None", "chirag.takkar@growthnatives.com"], "location": ["None", "Mohali"], "shift_id": ["None", "2"], "experience": ["None", "0.0"], "history_id": ["None", "2091"], "employee_id": ["None", "278"], "salary_hour": ["None", "0"], "basic_salary": ["None", "0"], "date_joining": ["None", "2021-07-01"], "history_date": ["None", "2025-02-03 10:18:00.269826"], "history_type": ["None", "~"], "history_user": ["None", "273"], "work_type_id": ["None", "4"], "department_id": ["None", "18"], "job_position_id": ["None", "187"], "employee_type_id": ["None", "3"], "history_relation": ["None", "277"], "history_highlight": ["None", "False"]} 2025-02-03 10:18:00.28222+00 273 59 122.176.134.248 \N \N \N
4805 277 277 Chirag Takkar (GN0144) - Software Engineer - (Development - GN) 1 {"tags": {"type": "m2m", "objects": ["Full Time"], "operation": "add"}} 2025-02-03 10:18:00.308771+00 273 55 122.176.134.248 \N \N \N
4806 68 68 Admin GN Your work details has been updated. 0 minutes ago 0 {"id": ["None", "68"], "data": ["null", "{\\"icon\\": \\"briefcase\\", \\"redirect\\": \\"/employee/employee-profile/\\", \\"verb_ar\\": \\"\\\\u062a\\\\u0645 \\\\u062a\\\\u062d\\\\u062f\\\\u064a\\\\u062b \\\\u062a\\\\u0641\\\\u0627\\\\u0635\\\\u064a\\\\u0644 \\\\u0639\\\\u0645\\\\u0644\\\\u0643.\\", \\"verb_de\\": \\"Ihre Arbeitsdetails wurden aktualisiert.\\", \\"verb_es\\": \\"Se han actualizado los detalles de su trabajo.\\", \\"verb_fr\\": \\"Vos informations professionnelles ont \\\\u00e9t\\\\u00e9 mises \\\\u00e0 jour.\\"}"], "verb": ["None", "Your work details has been updated."], "actor": ["None", "Admin GN "], "level": ["None", "info"], "public": ["None", "True"], "unread": ["None", "True"], "deleted": ["None", "False"], "emailed": ["None", "False"], "verb_ar": ["None", "تم تحديث تفاصيل عملك."], "verb_de": ["None", "Ihre Arbeitsdetails wurden aktualisiert."], "verb_en": ["None", ""], "verb_es": ["None", "Se han actualizado los detalles de su trabajo."], "verb_fr": ["None", "Vos informations professionnelles ont été mises à jour."], "recipient": ["None", "516"], "timestamp": ["None", "2025-02-03 10:18:00.311895"], "actor_object_id": ["None", "36"], "actor_content_type": ["None", "53"]} 2025-02-03 10:18:00.318357+00 273 7 122.176.134.248 \N \N \N
4807 2092 2092 Eshu Arora (GN0147) - Software Engineer - (Development - GN) as of 2025-02-03 10:18:22.686068+00:00 0 {"id": ["None", "276"], "email": ["None", "eshu.arora@growthnatives.com"], "location": ["None", "Mohali"], "shift_id": ["None", "2"], "experience": ["None", "0.0"], "history_id": ["None", "2092"], "employee_id": ["None", "277"], "salary_hour": ["None", "0"], "basic_salary": ["None", "0"], "date_joining": ["None", "2021-07-01"], "history_date": ["None", "2025-02-03 10:18:22.686068"], "history_type": ["None", "~"], "history_user": ["None", "273"], "work_type_id": ["None", "4"], "department_id": ["None", "18"], "job_position_id": ["None", "187"], "employee_type_id": ["None", "3"], "history_relation": ["None", "276"], "history_highlight": ["None", "False"]} 2025-02-03 10:18:22.697011+00 273 59 122.176.134.248 \N \N \N
4808 276 276 Eshu Arora (GN0147) - Software Engineer - (Development - GN) 1 {"tags": {"type": "m2m", "objects": ["Full Time"], "operation": "add"}} 2025-02-03 10:18:22.711815+00 273 55 122.176.134.248 \N \N \N
4809 69 69 Admin GN Your work details has been updated. 0 minutes ago 0 {"id": ["None", "69"], "data": ["null", "{\\"icon\\": \\"briefcase\\", \\"redirect\\": \\"/employee/employee-profile/\\", \\"verb_ar\\": \\"\\\\u062a\\\\u0645 \\\\u062a\\\\u062d\\\\u062f\\\\u064a\\\\u062b \\\\u062a\\\\u0641\\\\u0627\\\\u0635\\\\u064a\\\\u0644 \\\\u0639\\\\u0645\\\\u0644\\\\u0643.\\", \\"verb_de\\": \\"Ihre Arbeitsdetails wurden aktualisiert.\\", \\"verb_es\\": \\"Se han actualizado los detalles de su trabajo.\\", \\"verb_fr\\": \\"Vos informations professionnelles ont \\\\u00e9t\\\\u00e9 mises \\\\u00e0 jour.\\"}"], "verb": ["None", "Your work details has been updated."], "actor": ["None", "Admin GN "], "level": ["None", "info"], "public": ["None", "True"], "unread": ["None", "True"], "deleted": ["None", "False"], "emailed": ["None", "False"], "verb_ar": ["None", "تم تحديث تفاصيل عملك."], "verb_de": ["None", "Ihre Arbeitsdetails wurden aktualisiert."], "verb_en": ["None", ""], "verb_es": ["None", "Se han actualizado los detalles de su trabajo."], "verb_fr": ["None", "Vos informations professionnelles ont été mises à jour."], "recipient": ["None", "515"], "timestamp": ["None", "2025-02-03 10:18:22.714879"], "actor_object_id": ["None", "36"], "actor_content_type": ["None", "53"]} 2025-02-03 10:18:22.721991+00 273 7 122.176.134.248 \N \N \N
4810 2093 2093 Lokesh (GN0548) - Software Developer Intern - (Development - GN) as of 2025-02-03 10:18:42.935350+00:00 0 {"id": ["None", "274"], "email": ["None", "lokesh.Gahnolia@growthnatives.co"], "location": ["None", "Mohali"], "shift_id": ["None", "2"], "experience": ["None", "0.0"], "history_id": ["None", "2093"], "employee_id": ["None", "275"], "salary_hour": ["None", "0"], "basic_salary": ["None", "0"], "date_joining": ["None", "2024-06-10"], "history_date": ["None", "2025-02-03 10:18:42.935350"], "history_type": ["None", "~"], "history_user": ["None", "273"], "work_type_id": ["None", "4"], "department_id": ["None", "18"], "job_position_id": ["None", "192"], "employee_type_id": ["None", "5"], "history_relation": ["None", "274"], "history_highlight": ["None", "False"]} 2025-02-03 10:18:42.945636+00 273 59 122.176.134.248 \N \N \N
4811 274 274 Lokesh (GN0548) - Software Developer Intern - (Development - GN) 1 {"tags": {"type": "m2m", "objects": ["Intern"], "operation": "add"}} 2025-02-03 10:18:42.96035+00 273 55 122.176.134.248 \N \N \N
4812 70 70 Admin GN Your work details has been updated. 0 minutes ago 0 {"id": ["None", "70"], "data": ["null", "{\\"icon\\": \\"briefcase\\", \\"redirect\\": \\"/employee/employee-profile/\\", \\"verb_ar\\": \\"\\\\u062a\\\\u0645 \\\\u062a\\\\u062d\\\\u062f\\\\u064a\\\\u062b \\\\u062a\\\\u0641\\\\u0627\\\\u0635\\\\u064a\\\\u0644 \\\\u0639\\\\u0645\\\\u0644\\\\u0643.\\", \\"verb_de\\": \\"Ihre Arbeitsdetails wurden aktualisiert.\\", \\"verb_es\\": \\"Se han actualizado los detalles de su trabajo.\\", \\"verb_fr\\": \\"Vos informations professionnelles ont \\\\u00e9t\\\\u00e9 mises \\\\u00e0 jour.\\"}"], "verb": ["None", "Your work details has been updated."], "actor": ["None", "Admin GN "], "level": ["None", "info"], "public": ["None", "True"], "unread": ["None", "True"], "deleted": ["None", "False"], "emailed": ["None", "False"], "verb_ar": ["None", "تم تحديث تفاصيل عملك."], "verb_de": ["None", "Ihre Arbeitsdetails wurden aktualisiert."], "verb_en": ["None", ""], "verb_es": ["None", "Se han actualizado los detalles de su trabajo."], "verb_fr": ["None", "Vos informations professionnelles ont été mises à jour."], "recipient": ["None", "513"], "timestamp": ["None", "2025-02-03 10:18:42.963452"], "actor_object_id": ["None", "36"], "actor_content_type": ["None", "53"]} 2025-02-03 10:18:42.968981+00 273 7 122.176.134.248 \N \N \N
4813 2094 2094 Mridul Kumar (GN0591) - Senior Software Developer - (Development - GN) as of 2025-02-03 10:19:02.301489+00:00 0 {"id": ["None", "273"], "email": ["None", "mridul.kumar@growthnatives.com"], "location": ["None", "Mohali"], "shift_id": ["None", "2"], "experience": ["None", "0.0"], "history_id": ["None", "2094"], "employee_id": ["None", "274"], "salary_hour": ["None", "0"], "basic_salary": ["None", "0"], "date_joining": ["None", "2025-01-06"], "history_date": ["None", "2025-02-03 10:19:02.301489"], "history_type": ["None", "~"], "history_user": ["None", "273"], "work_type_id": ["None", "4"], "department_id": ["None", "18"], "job_position_id": ["None", "185"], "employee_type_id": ["None", "3"], "history_relation": ["None", "273"], "history_highlight": ["None", "False"]} 2025-02-03 10:19:02.310326+00 273 59 122.176.134.248 \N \N \N
4814 273 273 Mridul Kumar (GN0591) - Senior Software Developer - (Development - GN) 1 {"tags": {"type": "m2m", "objects": ["Full Time"], "operation": "add"}} 2025-02-03 10:19:02.32414+00 273 55 122.176.134.248 \N \N \N
4815 71 71 Admin GN Your work details has been updated. 0 minutes ago 0 {"id": ["None", "71"], "data": ["null", "{\\"icon\\": \\"briefcase\\", \\"redirect\\": \\"/employee/employee-profile/\\", \\"verb_ar\\": \\"\\\\u062a\\\\u0645 \\\\u062a\\\\u062d\\\\u062f\\\\u064a\\\\u062b \\\\u062a\\\\u0641\\\\u0627\\\\u0635\\\\u064a\\\\u0644 \\\\u0639\\\\u0645\\\\u0644\\\\u0643.\\", \\"verb_de\\": \\"Ihre Arbeitsdetails wurden aktualisiert.\\", \\"verb_es\\": \\"Se han actualizado los detalles de su trabajo.\\", \\"verb_fr\\": \\"Vos informations professionnelles ont \\\\u00e9t\\\\u00e9 mises \\\\u00e0 jour.\\"}"], "verb": ["None", "Your work details has been updated."], "actor": ["None", "Admin GN "], "level": ["None", "info"], "public": ["None", "True"], "unread": ["None", "True"], "deleted": ["None", "False"], "emailed": ["None", "False"], "verb_ar": ["None", "تم تحديث تفاصيل عملك."], "verb_de": ["None", "Ihre Arbeitsdetails wurden aktualisiert."], "verb_en": ["None", ""], "verb_es": ["None", "Se han actualizado los detalles de su trabajo."], "verb_fr": ["None", "Vos informations professionnelles ont été mises à jour."], "recipient": ["None", "512"], "timestamp": ["None", "2025-02-03 10:19:02.327611"], "actor_object_id": ["None", "36"], "actor_content_type": ["None", "53"]} 2025-02-03 10:19:02.33328+00 273 7 122.176.134.248 \N \N \N
4816 2095 2095 Rishav Ranjan (GN0594) - Intern, Software developer - (Development - GN) as of 2025-02-03 10:19:26.214538+00:00 0 {"id": ["None", "295"], "email": ["None", "rishav.rajan@growthnatives.co"], "location": ["None", "Mohali"], "shift_id": ["None", "2"], "experience": ["None", "0.0"], "history_id": ["None", "2095"], "employee_id": ["None", "296"], "salary_hour": ["None", "0"], "basic_salary": ["None", "0"], "date_joining": ["None", "2025-01-06"], "history_date": ["None", "2025-02-03 10:19:26.214538"], "history_type": ["None", "~"], "history_user": ["None", "273"], "work_type_id": ["None", "4"], "department_id": ["None", "18"], "job_position_id": ["None", "193"], "employee_type_id": ["None", "5"], "history_relation": ["None", "295"], "history_highlight": ["None", "False"], "reporting_manager_id": ["None", "294"]} 2025-02-03 10:19:26.22522+00 273 59 122.176.134.248 \N \N \N
4817 295 295 Rishav Ranjan (GN0594) - Intern, Software developer - (Development - GN) 1 {"tags": {"type": "m2m", "objects": ["Intern"], "operation": "add"}} 2025-02-03 10:19:26.255504+00 273 55 122.176.134.248 \N \N \N
4818 72 72 Admin GN Your work details has been updated. 0 minutes ago 0 {"id": ["None", "72"], "data": ["null", "{\\"icon\\": \\"briefcase\\", \\"redirect\\": \\"/employee/employee-profile/\\", \\"verb_ar\\": \\"\\\\u062a\\\\u0645 \\\\u062a\\\\u062d\\\\u062f\\\\u064a\\\\u062b \\\\u062a\\\\u0641\\\\u0627\\\\u0635\\\\u064a\\\\u0644 \\\\u0639\\\\u0645\\\\u0644\\\\u0643.\\", \\"verb_de\\": \\"Ihre Arbeitsdetails wurden aktualisiert.\\", \\"verb_es\\": \\"Se han actualizado los detalles de su trabajo.\\", \\"verb_fr\\": \\"Vos informations professionnelles ont \\\\u00e9t\\\\u00e9 mises \\\\u00e0 jour.\\"}"], "verb": ["None", "Your work details has been updated."], "actor": ["None", "Admin GN "], "level": ["None", "info"], "public": ["None", "True"], "unread": ["None", "True"], "deleted": ["None", "False"], "emailed": ["None", "False"], "verb_ar": ["None", "تم تحديث تفاصيل عملك."], "verb_de": ["None", "Ihre Arbeitsdetails wurden aktualisiert."], "verb_en": ["None", ""], "verb_es": ["None", "Se han actualizado los detalles de su trabajo."], "verb_fr": ["None", "Vos informations professionnelles ont été mises à jour."], "recipient": ["None", "534"], "timestamp": ["None", "2025-02-03 10:19:26.259497"], "actor_object_id": ["None", "36"], "actor_content_type": ["None", "53"]} 2025-02-03 10:19:26.267945+00 273 7 122.176.134.248 \N \N \N
4819 2096 2096 Sahil Koundal (GN0576) - Software Developer Intern - (Development - GN) as of 2025-02-03 10:19:47.571597+00:00 0 {"id": ["None", "296"], "email": ["None", "sahil.koundal@growthnatives.co"], "location": ["None", "Mohali"], "shift_id": ["None", "2"], "experience": ["None", "0.0"], "history_id": ["None", "2096"], "employee_id": ["None", "297"], "salary_hour": ["None", "0"], "basic_salary": ["None", "0"], "date_joining": ["None", "2024-10-01"], "history_date": ["None", "2025-02-03 10:19:47.571597"], "history_type": ["None", "~"], "history_user": ["None", "273"], "work_type_id": ["None", "4"], "department_id": ["None", "18"], "job_position_id": ["None", "192"], "employee_type_id": ["None", "5"], "history_relation": ["None", "296"], "history_highlight": ["None", "False"], "reporting_manager_id": ["None", "294"]} 2025-02-03 10:19:47.580076+00 273 59 122.176.134.248 \N \N \N
4820 296 296 Sahil Koundal (GN0576) - Software Developer Intern - (Development - GN) 1 {"tags": {"type": "m2m", "objects": ["Intern"], "operation": "add"}} 2025-02-03 10:19:47.592675+00 273 55 122.176.134.248 \N \N \N
4821 73 73 Admin GN Your work details has been updated. 0 minutes ago 0 {"id": ["None", "73"], "data": ["null", "{\\"icon\\": \\"briefcase\\", \\"redirect\\": \\"/employee/employee-profile/\\", \\"verb_ar\\": \\"\\\\u062a\\\\u0645 \\\\u062a\\\\u062d\\\\u062f\\\\u064a\\\\u062b \\\\u062a\\\\u0641\\\\u0627\\\\u0635\\\\u064a\\\\u0644 \\\\u0639\\\\u0645\\\\u0644\\\\u0643.\\", \\"verb_de\\": \\"Ihre Arbeitsdetails wurden aktualisiert.\\", \\"verb_es\\": \\"Se han actualizado los detalles de su trabajo.\\", \\"verb_fr\\": \\"Vos informations professionnelles ont \\\\u00e9t\\\\u00e9 mises \\\\u00e0 jour.\\"}"], "verb": ["None", "Your work details has been updated."], "actor": ["None", "Admin GN "], "level": ["None", "info"], "public": ["None", "True"], "unread": ["None", "True"], "deleted": ["None", "False"], "emailed": ["None", "False"], "verb_ar": ["None", "تم تحديث تفاصيل عملك."], "verb_de": ["None", "Ihre Arbeitsdetails wurden aktualisiert."], "verb_en": ["None", ""], "verb_es": ["None", "Se han actualizado los detalles de su trabajo."], "verb_fr": ["None", "Vos informations professionnelles ont été mises à jour."], "recipient": ["None", "535"], "timestamp": ["None", "2025-02-03 10:19:47.595767"], "actor_object_id": ["None", "36"], "actor_content_type": ["None", "53"]} 2025-02-03 10:19:47.600909+00 273 7 122.176.134.248 \N \N \N
4822 2097 2097 Shipra Goyal (GN0135) - Senior Software Engineer - (Development - GN) as of 2025-02-03 10:20:11.445767+00:00 0 {"id": ["None", "278"], "email": ["None", "shipra.goyal@growthnatives.com"], "location": ["None", "Mohali"], "shift_id": ["None", "2"], "experience": ["None", "0.0"], "history_id": ["None", "2097"], "employee_id": ["None", "279"], "salary_hour": ["None", "0"], "basic_salary": ["None", "0"], "date_joining": ["None", "2021-06-10"], "history_date": ["None", "2025-02-03 10:20:11.445767"], "history_type": ["None", "~"], "history_user": ["None", "273"], "work_type_id": ["None", "4"], "department_id": ["None", "18"], "job_position_id": ["None", "190"], "employee_type_id": ["None", "3"], "history_relation": ["None", "278"], "history_highlight": ["None", "False"]} 2025-02-03 10:20:11.452966+00 273 59 122.176.134.248 \N \N \N
4823 278 278 Shipra Goyal (GN0135) - Senior Software Engineer - (Development - GN) 1 {"tags": {"type": "m2m", "objects": ["Full Time"], "operation": "add"}} 2025-02-03 10:20:11.463343+00 273 55 122.176.134.248 \N \N \N
4824 74 74 Admin GN Your work details has been updated. 0 minutes ago 0 {"id": ["None", "74"], "data": ["null", "{\\"icon\\": \\"briefcase\\", \\"redirect\\": \\"/employee/employee-profile/\\", \\"verb_ar\\": \\"\\\\u062a\\\\u0645 \\\\u062a\\\\u062d\\\\u062f\\\\u064a\\\\u062b \\\\u062a\\\\u0641\\\\u0627\\\\u0635\\\\u064a\\\\u0644 \\\\u0639\\\\u0645\\\\u0644\\\\u0643.\\", \\"verb_de\\": \\"Ihre Arbeitsdetails wurden aktualisiert.\\", \\"verb_es\\": \\"Se han actualizado los detalles de su trabajo.\\", \\"verb_fr\\": \\"Vos informations professionnelles ont \\\\u00e9t\\\\u00e9 mises \\\\u00e0 jour.\\"}"], "verb": ["None", "Your work details has been updated."], "actor": ["None", "Admin GN "], "level": ["None", "info"], "public": ["None", "True"], "unread": ["None", "True"], "deleted": ["None", "False"], "emailed": ["None", "False"], "verb_ar": ["None", "تم تحديث تفاصيل عملك."], "verb_de": ["None", "Ihre Arbeitsdetails wurden aktualisiert."], "verb_en": ["None", ""], "verb_es": ["None", "Se han actualizado los detalles de su trabajo."], "verb_fr": ["None", "Vos informations professionnelles ont été mises à jour."], "recipient": ["None", "517"], "timestamp": ["None", "2025-02-03 10:20:11.465780"], "actor_object_id": ["None", "36"], "actor_content_type": ["None", "53"]} 2025-02-03 10:20:11.470139+00 273 7 122.176.134.248 \N \N \N
4825 75 75 Admin GN New leave type is assigned to you 0 minutes ago 0 {"id": ["None", "75"], "data": ["null", "{\\"icon\\": \\"people-circle\\", \\"redirect\\": \\"/leave/user-request-view/\\", \\"verb_ar\\": \\"\\\\u062a\\\\u0645 \\\\u062a\\\\u0639\\\\u064a\\\\u064a\\\\u0646 \\\\u0646\\\\u0648\\\\u0639 \\\\u0625\\\\u062c\\\\u0627\\\\u0632\\\\u0629 \\\\u062c\\\\u062f\\\\u064a\\\\u062f \\\\u0644\\\\u0643\\", \\"verb_de\\": \\"Ihnen wurde ein neuer Urlaubstyp zugewiesen\\", \\"verb_es\\": \\"Se le ha asignado un nuevo tipo de permiso\\", \\"verb_fr\\": \\"Un nouveau type de cong\\\\u00e9 vous a \\\\u00e9t\\\\u00e9 attribu\\\\u00e9\\"}"], "verb": ["None", "New leave type is assigned to you"], "actor": ["None", "Admin GN "], "level": ["None", "info"], "public": ["None", "True"], "unread": ["None", "True"], "deleted": ["None", "False"], "emailed": ["None", "False"], "verb_ar": ["None", "تم تعيين نوع إجازة جديد لك"], "verb_de": ["None", "Ihnen wurde ein neuer Urlaubstyp zugewiesen"], "verb_en": ["None", ""], "verb_es": ["None", "Se le ha asignado un nuevo tipo de permiso"], "verb_fr": ["None", "Un nouveau type de congé vous a été attribué"], "recipient": ["None", "514"], "timestamp": ["None", "2025-02-03 10:21:52.173414"], "actor_object_id": ["None", "36"], "actor_content_type": ["None", "53"]} 2025-02-03 10:21:52.179679+00 273 7 122.176.134.248 \N \N \N
4826 76 76 Admin GN New leave type is assigned to you 0 minutes ago 0 {"id": ["None", "76"], "data": ["null", "{\\"icon\\": \\"people-circle\\", \\"redirect\\": \\"/leave/user-request-view/\\", \\"verb_ar\\": \\"\\\\u062a\\\\u0645 \\\\u062a\\\\u0639\\\\u064a\\\\u064a\\\\u0646 \\\\u0646\\\\u0648\\\\u0639 \\\\u0625\\\\u062c\\\\u0627\\\\u0632\\\\u0629 \\\\u062c\\\\u062f\\\\u064a\\\\u062f \\\\u0644\\\\u0643\\", \\"verb_de\\": \\"Ihnen wurde ein neuer Urlaubstyp zugewiesen\\", \\"verb_es\\": \\"Se le ha asignado un nuevo tipo de permiso\\", \\"verb_fr\\": \\"Un nouveau type de cong\\\\u00e9 vous a \\\\u00e9t\\\\u00e9 attribu\\\\u00e9\\"}"], "verb": ["None", "New leave type is assigned to you"], "actor": ["None", "Admin GN "], "level": ["None", "info"], "public": ["None", "True"], "unread": ["None", "True"], "deleted": ["None", "False"], "emailed": ["None", "False"], "verb_ar": ["None", "تم تعيين نوع إجازة جديد لك"], "verb_de": ["None", "Ihnen wurde ein neuer Urlaubstyp zugewiesen"], "verb_en": ["None", ""], "verb_es": ["None", "Se le ha asignado un nuevo tipo de permiso"], "verb_fr": ["None", "Un nouveau type de congé vous a été attribué"], "recipient": ["None", "533"], "timestamp": ["None", "2025-02-03 10:21:52.184407"], "actor_object_id": ["None", "36"], "actor_content_type": ["None", "53"]} 2025-02-03 10:21:52.189979+00 273 7 122.176.134.248 \N \N \N
4827 77 77 Admin GN New leave type is assigned to you 0 minutes ago 0 {"id": ["None", "77"], "data": ["null", "{\\"icon\\": \\"people-circle\\", \\"redirect\\": \\"/leave/user-request-view/\\", \\"verb_ar\\": \\"\\\\u062a\\\\u0645 \\\\u062a\\\\u0639\\\\u064a\\\\u064a\\\\u0646 \\\\u0646\\\\u0648\\\\u0639 \\\\u0625\\\\u062c\\\\u0627\\\\u0632\\\\u0629 \\\\u062c\\\\u062f\\\\u064a\\\\u062f \\\\u0644\\\\u0643\\", \\"verb_de\\": \\"Ihnen wurde ein neuer Urlaubstyp zugewiesen\\", \\"verb_es\\": \\"Se le ha asignado un nuevo tipo de permiso\\", \\"verb_fr\\": \\"Un nouveau type de cong\\\\u00e9 vous a \\\\u00e9t\\\\u00e9 attribu\\\\u00e9\\"}"], "verb": ["None", "New leave type is assigned to you"], "actor": ["None", "Admin GN "], "level": ["None", "info"], "public": ["None", "True"], "unread": ["None", "True"], "deleted": ["None", "False"], "emailed": ["None", "False"], "verb_ar": ["None", "تم تعيين نوع إجازة جديد لك"], "verb_de": ["None", "Ihnen wurde ein neuer Urlaubstyp zugewiesen"], "verb_en": ["None", ""], "verb_es": ["None", "Se le ha asignado un nuevo tipo de permiso"], "verb_fr": ["None", "Un nouveau type de congé vous a été attribué"], "recipient": ["None", "516"], "timestamp": ["None", "2025-02-03 10:21:52.193863"], "actor_object_id": ["None", "36"], "actor_content_type": ["None", "53"]} 2025-02-03 10:21:52.198618+00 273 7 122.176.134.248 \N \N \N
4828 78 78 Admin GN New leave type is assigned to you 0 minutes ago 0 {"id": ["None", "78"], "data": ["null", "{\\"icon\\": \\"people-circle\\", \\"redirect\\": \\"/leave/user-request-view/\\", \\"verb_ar\\": \\"\\\\u062a\\\\u0645 \\\\u062a\\\\u0639\\\\u064a\\\\u064a\\\\u0646 \\\\u0646\\\\u0648\\\\u0639 \\\\u0625\\\\u062c\\\\u0627\\\\u0632\\\\u0629 \\\\u062c\\\\u062f\\\\u064a\\\\u062f \\\\u0644\\\\u0643\\", \\"verb_de\\": \\"Ihnen wurde ein neuer Urlaubstyp zugewiesen\\", \\"verb_es\\": \\"Se le ha asignado un nuevo tipo de permiso\\", \\"verb_fr\\": \\"Un nouveau type de cong\\\\u00e9 vous a \\\\u00e9t\\\\u00e9 attribu\\\\u00e9\\"}"], "verb": ["None", "New leave type is assigned to you"], "actor": ["None", "Admin GN "], "level": ["None", "info"], "public": ["None", "True"], "unread": ["None", "True"], "deleted": ["None", "False"], "emailed": ["None", "False"], "verb_ar": ["None", "تم تعيين نوع إجازة جديد لك"], "verb_de": ["None", "Ihnen wurde ein neuer Urlaubstyp zugewiesen"], "verb_en": ["None", ""], "verb_es": ["None", "Se le ha asignado un nuevo tipo de permiso"], "verb_fr": ["None", "Un nouveau type de congé vous a été attribué"], "recipient": ["None", "515"], "timestamp": ["None", "2025-02-03 10:21:52.202278"], "actor_object_id": ["None", "36"], "actor_content_type": ["None", "53"]} 2025-02-03 10:21:52.207013+00 273 7 122.176.134.248 \N \N \N
4829 79 79 Admin GN New leave type is assigned to you 0 minutes ago 0 {"id": ["None", "79"], "data": ["null", "{\\"icon\\": \\"people-circle\\", \\"redirect\\": \\"/leave/user-request-view/\\", \\"verb_ar\\": \\"\\\\u062a\\\\u0645 \\\\u062a\\\\u0639\\\\u064a\\\\u064a\\\\u0646 \\\\u0646\\\\u0648\\\\u0639 \\\\u0625\\\\u062c\\\\u0627\\\\u0632\\\\u0629 \\\\u062c\\\\u062f\\\\u064a\\\\u062f \\\\u0644\\\\u0643\\", \\"verb_de\\": \\"Ihnen wurde ein neuer Urlaubstyp zugewiesen\\", \\"verb_es\\": \\"Se le ha asignado un nuevo tipo de permiso\\", \\"verb_fr\\": \\"Un nouveau type de cong\\\\u00e9 vous a \\\\u00e9t\\\\u00e9 attribu\\\\u00e9\\"}"], "verb": ["None", "New leave type is assigned to you"], "actor": ["None", "Admin GN "], "level": ["None", "info"], "public": ["None", "True"], "unread": ["None", "True"], "deleted": ["None", "False"], "emailed": ["None", "False"], "verb_ar": ["None", "تم تعيين نوع إجازة جديد لك"], "verb_de": ["None", "Ihnen wurde ein neuer Urlaubstyp zugewiesen"], "verb_en": ["None", ""], "verb_es": ["None", "Se le ha asignado un nuevo tipo de permiso"], "verb_fr": ["None", "Un nouveau type de congé vous a été attribué"], "recipient": ["None", "512"], "timestamp": ["None", "2025-02-03 10:21:52.210556"], "actor_object_id": ["None", "36"], "actor_content_type": ["None", "53"]} 2025-02-03 10:21:52.215183+00 273 7 122.176.134.248 \N \N \N
4845 v4v9yzjxm74m2frur78fxz6ge7mph04j \N v4v9yzjxm74m2frur78fxz6ge7mph04j 0 {"expire_date": ["None", "2025-02-17 10:28:21.796965"], "session_key": ["None", "v4v9yzjxm74m2frur78fxz6ge7mph04j"], "session_data": ["None", ".eJyrVkoqSk1MSS4qzU0qVrKKrlYqLcpRslLKKCkpKLbS108tKtBLSc1NzEspSU3O0MsvStdX0lHKS8xNBSpy9wOy0_JL81KUrEqKSlNrdYjQnpOfnpmHZAiYj2ZObC0Aisk0Aw:1tetgj:LrxehHZ7YfrpiacyEU7JnVJIbXEk4JDjB_OX_Vxv9RU"]} 2025-02-03 10:28:21.798442+00 \N 6 \N \N \N \N
4846 xvgsccfwc84nxjj6nmqblj9chlujo6zz \N xvgsccfwc84nxjj6nmqblj9chlujo6zz 0 {"expire_date": ["None", "2025-02-17 10:28:32.452573"], "session_key": ["None", "xvgsccfwc84nxjj6nmqblj9chlujo6zz"], "session_data": ["None", ".eJyrVkoqSk1MSS4qzU0qVrKKrlYqLcpRslLKKCkpKLbS108tKtBLSc1NzEspSU3O0MsvStdX0lHKS8xNBSpy9wOy0_JL81KUrEqKSlNrdYjQnpOfnpmHZAiYj2ZObC0Aisk0Aw:1tetgu:gNHpshKZOVZAwdV32ZL9dUEEbhXKQgcwYE4Wd-BdBFo"]} 2025-02-03 10:28:32.45339+00 \N 6 122.176.134.248 \N \N \N
4830 80 80 Admin GN New leave type is assigned to you 0 minutes ago 0 {"id": ["None", "80"], "data": ["null", "{\\"icon\\": \\"people-circle\\", \\"redirect\\": \\"/leave/user-request-view/\\", \\"verb_ar\\": \\"\\\\u062a\\\\u0645 \\\\u062a\\\\u0639\\\\u064a\\\\u064a\\\\u0646 \\\\u0646\\\\u0648\\\\u0639 \\\\u0625\\\\u062c\\\\u0627\\\\u0632\\\\u0629 \\\\u062c\\\\u062f\\\\u064a\\\\u062f \\\\u0644\\\\u0643\\", \\"verb_de\\": \\"Ihnen wurde ein neuer Urlaubstyp zugewiesen\\", \\"verb_es\\": \\"Se le ha asignado un nuevo tipo de permiso\\", \\"verb_fr\\": \\"Un nouveau type de cong\\\\u00e9 vous a \\\\u00e9t\\\\u00e9 attribu\\\\u00e9\\"}"], "verb": ["None", "New leave type is assigned to you"], "actor": ["None", "Admin GN "], "level": ["None", "info"], "public": ["None", "True"], "unread": ["None", "True"], "deleted": ["None", "False"], "emailed": ["None", "False"], "verb_ar": ["None", "تم تعيين نوع إجازة جديد لك"], "verb_de": ["None", "Ihnen wurde ein neuer Urlaubstyp zugewiesen"], "verb_en": ["None", ""], "verb_es": ["None", "Se le ha asignado un nuevo tipo de permiso"], "verb_fr": ["None", "Un nouveau type de congé vous a été attribué"], "recipient": ["None", "517"], "timestamp": ["None", "2025-02-03 10:21:52.219223"], "actor_object_id": ["None", "36"], "actor_content_type": ["None", "53"]} 2025-02-03 10:21:52.223582+00 273 7 122.176.134.248 \N \N \N
4831 56vcslnarz3a6vc2dgf6icw2frn391vc \N 56vcslnarz3a6vc2dgf6icw2frn391vc 0 {"expire_date": ["None", "2025-02-17 10:23:35.928943"], "session_key": ["None", "56vcslnarz3a6vc2dgf6icw2frn391vc"], "session_data": ["None", "eyJ0aXRsZSI6IkRBU0hCT0FSRCJ9:1tetc7:DxWIDefbXBdHUqDKFsfkD4TWPXk66Kn7KIsMBRUBzmk"]} 2025-02-03 10:23:35.930553+00 \N 6 \N \N \N \N
4832 9g14vylj19d4dypfs4uuix23bkdsmgym \N 9g14vylj19d4dypfs4uuix23bkdsmgym 0 {"expire_date": ["None", "2025-02-17 10:23:38.649109"], "session_key": ["None", "9g14vylj19d4dypfs4uuix23bkdsmgym"], "session_data": ["None", "eyJ0aXRsZSI6IkRBU0hCT0FSRCJ9:1tetcA:bTZE9j49U7EYZiwj2To-PDUW_LC1D0C0dvOLj5wM8RM"]} 2025-02-03 10:23:38.650441+00 \N 6 \N \N \N \N
4833 zzcbmscqpprtd4xxym7ixmxg8cbz1zxh \N zzcbmscqpprtd4xxym7ixmxg8cbz1zxh 0 {"expire_date": ["None", "2025-02-17 10:23:40.628969"], "session_key": ["None", "zzcbmscqpprtd4xxym7ixmxg8cbz1zxh"], "session_data": ["None", ".eJyrVirJLMlJVbJScnEM9nDydwxyUdJRSipKTUxJLirNTSpWsoquViotygGqyCgpKSi20tdPLSrQS0nNTcxLKUlNztDLL0rXB-rJS8wFGePuB2Sn5ZfmpShZlRSVptbqEKE9Jz89M0_fPi-1osQWySywMJpxsbUAwQA8BQ:1tetcC:o49XlDWk6Fjl7aqaTEFv3lWZMKUOwn7h7F4MzTPaf7g"]} 2025-02-03 10:23:40.630029+00 \N 6 122.176.134.248 \N \N \N
4834 56vcslnarz3a6vc2dgf6icw2frn391vc \N 56vcslnarz3a6vc2dgf6icw2frn391vc 2 {"expire_date": ["2025-02-17 10:23:36.256825", "None"], "session_key": ["56vcslnarz3a6vc2dgf6icw2frn391vc", "None"], "session_data": [".eJyrVirJLMlJVbJScnEM9nDydwxyUdJRSipKTUxJLirNTSpWsoquViotygGqyCgpKSi20tdPLSrQS0nNTcxLKUlNztDLL0rXB-rJS8wFGePuB2Sn5ZfmpShZlRSVptbqEKE9Jz89M0_fPi-1osQWySywMJpxsbUAwQA8BQ:1tetc8:VTUbYeB5R21cs7vgeMWk0pYvKHyxuPT7Mw6KEeT0kfs", "None"]} 2025-02-03 10:23:40.635015+00 \N 6 122.176.134.248 \N \N \N
4835 273 273 Admin 1 {"last_login": ["2025-02-03 10:08:21.609969", "2025-02-03 10:23:40.637100"]} 2025-02-03 10:23:40.638569+00 \N 4 122.176.134.248 \N \N \N
4836 3 3 Leave Request 0 {"id": ["None", "3"], "body": ["None", "<p>{{self.get_full_name}}{</p>"], "title": ["None", "Leave Request"], "is_active": ["None", "False"], "created_at": ["None", "2025-02-03 10:24:41.202998"], "created_by": ["None", "273"], "modified_by": ["None", "273"]} 2025-02-03 10:24:41.208588+00 273 33 122.176.134.248 \N \N \N
4837 3 3 Leave Request 0 {"id": ["None", "3"], "model": ["None", "leave.models.LeaveRequest"], "title": ["None", "Leave Request"], "mail_to": ["None", "['created_by__employee_work_info__reporting_manager_id__get_email']"], "trigger": ["None", "on_create"], "condition": ["None", "<form id=\\"multipleConditionForm\\" data-select2-id=\\"multipleConditionForm\\">\\r\\n <table id=\\"multipleConditionTable\\" data-select2-id=\\"multipleConditionTable\\">\\r\\n <tbody data-select2-id=\\"1053\\"><tr>\\r\\n <th>Code</th>\\r\\n <th>Field</th>\\r\\n <th>Condition</th>\\r\\n <th>Value</th>\\r\\n <th>Logic</th>\\r\\n <th>\\r\\n Action\\r\\n <span title=\\"Reload\\" onclick=\\"$('[name=model]').change()\\">\\r\\n <ion-icon name=\\"refresh-circle\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"refresh circle\\"></ion-icon>\\r\\n </span>\\r\\n </th>\\r\\n </tr>\\r\\n <tr class=\\"dynamic-condition-row\\">\\r\\n <td class=\\"sn\\">C1</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\" data-select2-id=\\"1150\\"><option value=\\"automation_multiple_is_active\\">Is Active</option><option value=\\"automation_multiple_employee_id\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" selected=\\"selected\\" data-select2-id=\\"1152\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\">Description</option><option value=\\"automation_multiple_attachment\\">Attachment</option><option value=\\"automation_multiple_status\\">Status</option><option value=\\"automation_multiple_requested_date\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1151\\" style=\\"width: 110.713px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"0\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-8q-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-8q-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1154\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"1156\\">==</option>\\r\\n <option value=\\"!=\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1155\\" style=\\"width: 59.7125px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"0\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-ju-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-ju-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" tabindex=\\"-1\\" class=\\"select2-hidden-accessible\\" aria-hidden=\\"true\\" data-select2-id=\\"1159\\"><option value=\\"5\\" data-select2-id=\\"1161\\">Intern Casual Leave</option><option value=\\"4\\">Casual Leave</option><option value=\\"3\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1160\\" style=\\"width: 176.8px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"0\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-0l-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-0l-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Intern Casual Leave\\">Intern Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1163\\">\\r\\n <option value=\\"and\\" data-select2-id=\\"1165\\">And</option>\\r\\n <option value=\\"or\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1164\\" style=\\"width: 36.875px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"0\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-y3-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-y3-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"And\\">And</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr>\\r\\n \\r\\n \\r\\n \\r\\n <tr class=\\"dynamic-condition-row\\" data-select2-id=\\"1172\\">\\r\\n <td class=\\"sn\\">C2</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" data-select2-id=\\"762\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\"><option value=\\"automation_multiple_is_active\\" data-select2-id=\\"764\\">Is Active</option><option value=\\"automation_multiple_employee_id\\" data-select2-id=\\"1057\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\" data-select2-id=\\"1058\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\" data-select2-id=\\"1059\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\" data-select2-id=\\"1060\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\" data-select2-id=\\"1061\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\" data-select2-id=\\"1062\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\" data-select2-id=\\"1063\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\" data-select2-id=\\"1064\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\" data-select2-id=\\"1065\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\" data-select2-id=\\"1066\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\" data-select2-id=\\"1067\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\" data-select2-id=\\"1068\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\" data-select2-id=\\"1069\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\" data-select2-id=\\"1070\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\" data-select2-id=\\"1071\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\" data-select2-id=\\"1072\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\" data-select2-id=\\"1073\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\" data-select2-id=\\"1074\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\" data-select2-id=\\"1075\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\" data-select2-id=\\"1076\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\" data-select2-id=\\"1077\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\" data-select2-id=\\"1078\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\" data-select2-id=\\"1079\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\" data-select2-id=\\"1080\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" data-select2-id=\\"1081\\" selected=\\"selected\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\" data-select2-id=\\"1082\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\" data-select2-id=\\"1083\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\" data-select2-id=\\"1084\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\" data-select2-id=\\"1085\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\" data-select2-id=\\"1086\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\" data-select2-id=\\"1087\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\" data-select2-id=\\"1088\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\" data-select2-id=\\"1089\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\" data-select2-id=\\"1090\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\" data-select2-id=\\"1091\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\" data-select2-id=\\"1092\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\" data-select2-id=\\"1093\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\" data-select2-id=\\"1094\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\" data-select2-id=\\"1095\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\" data-select2-id=\\"1096\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\" data-select2-id=\\"1097\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\" data-select2-id=\\"1098\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\" data-select2-id=\\"1099\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\" data-select2-id=\\"1100\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\" data-select2-id=\\"1101\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\" data-select2-id=\\"1102\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\" data-select2-id=\\"1103\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\" data-select2-id=\\"1104\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\" data-select2-id=\\"1105\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\" data-select2-id=\\"1106\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\" data-select2-id=\\"1107\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\" data-select2-id=\\"1108\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\" data-select2-id=\\"1109\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\" data-select2-id=\\"1110\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\" data-select2-id=\\"1111\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\" data-select2-id=\\"1112\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\" data-select2-id=\\"1113\\">Description</option><option value=\\"automation_multiple_attachment\\" data-select2-id=\\"1114\\">Attachment</option><option value=\\"automation_multiple_status\\" data-select2-id=\\"1115\\">Status</option><option value=\\"automation_multiple_requested_date\\" data-select2-id=\\"1116\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\" data-select2-id=\\"1117\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\" data-select2-id=\\"1118\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\" data-select2-id=\\"1119\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\" data-select2-id=\\"1120\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\" data-select2-id=\\"1121\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\" data-select2-id=\\"1122\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\" data-select2-id=\\"1123\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\" data-select2-id=\\"1124\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\" data-select2-id=\\"1125\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\" data-select2-id=\\"1126\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\" data-select2-id=\\"1127\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\" data-select2-id=\\"1128\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\" data-select2-id=\\"1129\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\" data-select2-id=\\"1130\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\" data-select2-id=\\"1131\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\" data-select2-id=\\"1132\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\" data-select2-id=\\"1133\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\" data-select2-id=\\"1134\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\" data-select2-id=\\"1135\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\" data-select2-id=\\"1136\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\" data-select2-id=\\"1137\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\" data-select2-id=\\"1138\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\" data-select2-id=\\"1139\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\" data-select2-id=\\"1140\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\" data-select2-id=\\"1141\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\" data-select2-id=\\"1142\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\" data-select2-id=\\"1143\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1166\\" style=\\"width: 117.9px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-ka-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-ka-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" data-select2-id=\\"765\\" tabindex=\\"-1\\" aria-hidden=\\"true\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"767\\">==</option>\\r\\n <option value=\\"!=\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1167\\" style=\\"width: 59.7125px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-yp-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-yp-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\" data-select2-id=\\"1171\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" data-select2-id=\\"1147\\" tabindex=\\"-1\\" class=\\"w-100 select2-hidden-accessible\\" aria-hidden=\\"true\\"><option value=\\"5\\" data-select2-id=\\"1149\\">Intern Casual Leave</option><option value=\\"4\\" data-select2-id=\\"1173\\">Casual Leave</option><option value=\\"3\\" data-select2-id=\\"1174\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default select2-container--below select2-container--focus\\" dir=\\"ltr\\" data-select2-id=\\"1168\\" style=\\"width: 171.163px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-44-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-44-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Casual Leave\\">Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" data-select2-id=\\"768\\" tabindex=\\"-1\\" aria-hidden=\\"true\\">\\r\\n <option value=\\"and\\" data-select2-id=\\"770\\">And</option>\\r\\n <option value=\\"or\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1169\\" style=\\"width: 55.6125px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-42-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-42-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"And\\">And</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr></tbody></table>\\r\\n </form>\\r\\n <script>\\r\\n $(\\"#multipleConditionTable\\").closest(\\"[contenteditable=true]\\").removeAttr(\\"contenteditable\\");\\r\\n </script>"], "is_active": ["None", "False"], "created_at": ["None", "2025-02-03 10:26:21.719900"], "created_by": ["None", "273"], "modified_by": ["None", "273"], "mail_details": ["None", "employee_id__pk"], "method_title": ["None", "leave_request"], "mail_template": ["None", "3"], "condition_html": ["None", "<table id=\\"multipleConditionTable\\" data-select2-id=\\"multipleConditionTable\\">\\r\\n <tbody data-select2-id=\\"1053\\"><tr>\\r\\n <th>Code</th>\\r\\n <th>Field</th>\\r\\n <th>Condition</th>\\r\\n <th>Value</th>\\r\\n <th>Logic</th>\\r\\n <th>\\r\\n Action\\r\\n <span title=\\"Reload\\" onclick=\\"$('[name=model]').change()\\">\\r\\n <ion-icon name=\\"refresh-circle\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"refresh circle\\"></ion-icon>\\r\\n </span>\\r\\n </th>\\r\\n </tr>\\r\\n <tr class=\\"dynamic-condition-row\\">\\r\\n <td class=\\"sn\\">C1</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\" data-select2-id=\\"1150\\"><option value=\\"automation_multiple_is_active\\">Is Active</option><option value=\\"automation_multiple_employee_id\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" selected=\\"selected\\" data-select2-id=\\"1152\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\">Description</option><option value=\\"automation_multiple_attachment\\">Attachment</option><option value=\\"automation_multiple_status\\">Status</option><option value=\\"automation_multiple_requested_date\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1151\\" style=\\"width: 110.713px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"0\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-8q-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-8q-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1154\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"1156\\">==</option>\\r\\n <option value=\\"!=\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1155\\" style=\\"width: 59.7125px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"0\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-ju-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-ju-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" tabindex=\\"-1\\" class=\\"select2-hidden-accessible\\" aria-hidden=\\"true\\" data-select2-id=\\"1159\\"><option value=\\"5\\" data-select2-id=\\"1161\\">Intern Casual Leave</option><option value=\\"4\\">Casual Leave</option><option value=\\"3\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1160\\" style=\\"width: 176.8px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"0\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-0l-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-0l-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Intern Casual Leave\\">Intern Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1163\\">\\r\\n <option value=\\"and\\" data-select2-id=\\"1165\\">And</option>\\r\\n <option value=\\"or\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1164\\" style=\\"width: 36.875px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"0\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-y3-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-y3-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"And\\">And</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr>\\r\\n \\r\\n \\r\\n \\r\\n <tr class=\\"dynamic-condition-row\\" data-select2-id=\\"1172\\">\\r\\n <td class=\\"sn\\">C2</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" data-select2-id=\\"762\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\"><option value=\\"automation_multiple_is_active\\" data-select2-id=\\"764\\">Is Active</option><option value=\\"automation_multiple_employee_id\\" data-select2-id=\\"1057\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\" data-select2-id=\\"1058\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\" data-select2-id=\\"1059\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\" data-select2-id=\\"1060\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\" data-select2-id=\\"1061\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\" data-select2-id=\\"1062\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\" data-select2-id=\\"1063\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\" data-select2-id=\\"1064\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\" data-select2-id=\\"1065\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\" data-select2-id=\\"1066\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\" data-select2-id=\\"1067\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\" data-select2-id=\\"1068\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\" data-select2-id=\\"1069\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\" data-select2-id=\\"1070\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\" data-select2-id=\\"1071\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\" data-select2-id=\\"1072\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\" data-select2-id=\\"1073\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\" data-select2-id=\\"1074\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\" data-select2-id=\\"1075\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\" data-select2-id=\\"1076\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\" data-select2-id=\\"1077\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\" data-select2-id=\\"1078\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\" data-select2-id=\\"1079\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\" data-select2-id=\\"1080\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" data-select2-id=\\"1081\\" selected=\\"selected\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\" data-select2-id=\\"1082\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\" data-select2-id=\\"1083\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\" data-select2-id=\\"1084\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\" data-select2-id=\\"1085\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\" data-select2-id=\\"1086\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\" data-select2-id=\\"1087\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\" data-select2-id=\\"1088\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\" data-select2-id=\\"1089\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\" data-select2-id=\\"1090\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\" data-select2-id=\\"1091\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\" data-select2-id=\\"1092\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\" data-select2-id=\\"1093\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\" data-select2-id=\\"1094\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\" data-select2-id=\\"1095\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\" data-select2-id=\\"1096\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\" data-select2-id=\\"1097\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\" data-select2-id=\\"1098\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\" data-select2-id=\\"1099\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\" data-select2-id=\\"1100\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\" data-select2-id=\\"1101\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\" data-select2-id=\\"1102\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\" data-select2-id=\\"1103\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\" data-select2-id=\\"1104\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\" data-select2-id=\\"1105\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\" data-select2-id=\\"1106\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\" data-select2-id=\\"1107\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\" data-select2-id=\\"1108\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\" data-select2-id=\\"1109\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\" data-select2-id=\\"1110\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\" data-select2-id=\\"1111\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\" data-select2-id=\\"1112\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\" data-select2-id=\\"1113\\">Description</option><option value=\\"automation_multiple_attachment\\" data-select2-id=\\"1114\\">Attachment</option><option value=\\"automation_multiple_status\\" data-select2-id=\\"1115\\">Status</option><option value=\\"automation_multiple_requested_date\\" data-select2-id=\\"1116\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\" data-select2-id=\\"1117\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\" data-select2-id=\\"1118\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\" data-select2-id=\\"1119\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\" data-select2-id=\\"1120\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\" data-select2-id=\\"1121\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\" data-select2-id=\\"1122\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\" data-select2-id=\\"1123\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\" data-select2-id=\\"1124\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\" data-select2-id=\\"1125\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\" data-select2-id=\\"1126\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\" data-select2-id=\\"1127\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\" data-select2-id=\\"1128\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\" data-select2-id=\\"1129\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\" data-select2-id=\\"1130\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\" data-select2-id=\\"1131\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\" data-select2-id=\\"1132\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\" data-select2-id=\\"1133\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\" data-select2-id=\\"1134\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\" data-select2-id=\\"1135\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\" data-select2-id=\\"1136\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\" data-select2-id=\\"1137\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\" data-select2-id=\\"1138\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\" data-select2-id=\\"1139\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\" data-select2-id=\\"1140\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\" data-select2-id=\\"1141\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\" data-select2-id=\\"1142\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\" data-select2-id=\\"1143\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1166\\" style=\\"width: 117.9px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-ka-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-ka-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" data-select2-id=\\"765\\" tabindex=\\"-1\\" aria-hidden=\\"true\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"767\\">==</option>\\r\\n <option value=\\"!=\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1167\\" style=\\"width: 59.7125px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-yp-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-yp-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\" data-select2-id=\\"1171\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" data-select2-id=\\"1147\\" tabindex=\\"-1\\" class=\\"w-100 select2-hidden-accessible\\" aria-hidden=\\"true\\"><option value=\\"5\\" data-select2-id=\\"1149\\">Intern Casual Leave</option><option value=\\"4\\" data-select2-id=\\"1173\\">Casual Leave</option><option value=\\"3\\" data-select2-id=\\"1174\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default select2-container--below\\" dir=\\"ltr\\" data-select2-id=\\"1168\\" style=\\"width: 171.163px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-44-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-44-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Casual Leave\\">Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" data-select2-id=\\"768\\" tabindex=\\"-1\\" aria-hidden=\\"true\\">\\r\\n <option value=\\"and\\" data-select2-id=\\"770\\">And</option>\\r\\n <option value=\\"or\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1169\\" style=\\"width: 55.6125px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-42-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-42-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"And\\">And</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr></tbody></table>"], "mail_detail_choice": ["None", ""], "condition_querystring": ["None", "automation_multiple_condition=automation_multiple_leave_type_id&condition=%3D%3D&automation_multiple_condition=5&logic=and&automation_multiple_condition=automation_multiple_leave_type_id&condition=%3D%3D&automation_multiple_condition=4&logic=and"]} 2025-02-03 10:26:21.748575+00 273 193 122.176.134.248 \N \N \N
4838 3 3 Leave Request 1 {"template_attachments": {"type": "m2m", "objects": ["Leave Request"], "operation": "add"}} 2025-02-03 10:26:21.801618+00 273 193 122.176.134.248 \N \N \N
4839 4 4 info@growthnatives.com 0 {"id": ["None", "4"], "host": ["None", "smtp.gmail.com"], "port": ["None", "587"], "timeout": ["None", "60"], "use_ssl": ["None", "False"], "use_tls": ["None", "True"], "password": ["None", "dmrhdnprnxbnwpge"], "username": ["None", "info@growthnatives.com"], "is_active": ["None", "True"], "created_at": ["None", "2025-02-03 10:26:39.095876"], "created_by": ["None", "273"], "from_email": ["None", "info@growthnatives.com"], "is_primary": ["None", "True"], "modified_by": ["None", "273"], "display_name": ["None", "info viva india.team"], "fail_silently": ["None", "False"]} 2025-02-03 10:26:39.101734+00 273 21 122.176.134.248 \N \N \N
4840 3 3 Leave Request 1 {"condition": ["<form id=\\"multipleConditionForm\\" data-select2-id=\\"multipleConditionForm\\">\\r\\n <table id=\\"multipleConditionTable\\" data-select2-id=\\"multipleConditionTable\\">\\r\\n <tbody data-select2-id=\\"1053\\"><tr>\\r\\n <th>Code</th>\\r\\n <th>Field</th>\\r\\n <th>Condition</th>\\r\\n <th>Value</th>\\r\\n <th>Logic</th>\\r\\n <th>\\r\\n Action\\r\\n <span title=\\"Reload\\" onclick=\\"$('[name=model]').change()\\">\\r\\n <ion-icon name=\\"refresh-circle\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"refresh circle\\"></ion-icon>\\r\\n </span>\\r\\n </th>\\r\\n </tr>\\r\\n <tr class=\\"dynamic-condition-row\\">\\r\\n <td class=\\"sn\\">C1</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\" data-select2-id=\\"1150\\"><option value=\\"automation_multiple_is_active\\">Is Active</option><option value=\\"automation_multiple_employee_id\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" selected=\\"selected\\" data-select2-id=\\"1152\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\">Description</option><option value=\\"automation_multiple_attachment\\">Attachment</option><option value=\\"automation_multiple_status\\">Status</option><option value=\\"automation_multiple_requested_date\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1151\\" style=\\"width: 110.713px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"0\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-8q-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-8q-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1154\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"1156\\">==</option>\\r\\n <option value=\\"!=\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1155\\" style=\\"width: 59.7125px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"0\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-ju-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-ju-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" tabindex=\\"-1\\" class=\\"select2-hidden-accessible\\" aria-hidden=\\"true\\" data-select2-id=\\"1159\\"><option value=\\"5\\" data-select2-id=\\"1161\\">Intern Casual Leave</option><option value=\\"4\\">Casual Leave</option><option value=\\"3\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1160\\" style=\\"width: 176.8px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"0\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-0l-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-0l-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Intern Casual Leave\\">Intern Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1163\\">\\r\\n <option value=\\"and\\" data-select2-id=\\"1165\\">And</option>\\r\\n <option value=\\"or\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1164\\" style=\\"width: 36.875px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"0\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-y3-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-y3-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"And\\">And</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr>\\r\\n \\r\\n \\r\\n \\r\\n <tr class=\\"dynamic-condition-row\\" data-select2-id=\\"1172\\">\\r\\n <td class=\\"sn\\">C2</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" data-select2-id=\\"762\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\"><option value=\\"automation_multiple_is_active\\" data-select2-id=\\"764\\">Is Active</option><option value=\\"automation_multiple_employee_id\\" data-select2-id=\\"1057\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\" data-select2-id=\\"1058\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\" data-select2-id=\\"1059\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\" data-select2-id=\\"1060\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\" data-select2-id=\\"1061\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\" data-select2-id=\\"1062\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\" data-select2-id=\\"1063\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\" data-select2-id=\\"1064\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\" data-select2-id=\\"1065\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\" data-select2-id=\\"1066\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\" data-select2-id=\\"1067\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\" data-select2-id=\\"1068\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\" data-select2-id=\\"1069\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\" data-select2-id=\\"1070\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\" data-select2-id=\\"1071\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\" data-select2-id=\\"1072\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\" data-select2-id=\\"1073\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\" data-select2-id=\\"1074\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\" data-select2-id=\\"1075\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\" data-select2-id=\\"1076\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\" data-select2-id=\\"1077\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\" data-select2-id=\\"1078\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\" data-select2-id=\\"1079\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\" data-select2-id=\\"1080\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" data-select2-id=\\"1081\\" selected=\\"selected\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\" data-select2-id=\\"1082\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\" data-select2-id=\\"1083\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\" data-select2-id=\\"1084\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\" data-select2-id=\\"1085\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\" data-select2-id=\\"1086\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\" data-select2-id=\\"1087\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\" data-select2-id=\\"1088\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\" data-select2-id=\\"1089\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\" data-select2-id=\\"1090\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\" data-select2-id=\\"1091\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\" data-select2-id=\\"1092\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\" data-select2-id=\\"1093\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\" data-select2-id=\\"1094\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\" data-select2-id=\\"1095\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\" data-select2-id=\\"1096\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\" data-select2-id=\\"1097\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\" data-select2-id=\\"1098\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\" data-select2-id=\\"1099\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\" data-select2-id=\\"1100\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\" data-select2-id=\\"1101\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\" data-select2-id=\\"1102\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\" data-select2-id=\\"1103\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\" data-select2-id=\\"1104\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\" data-select2-id=\\"1105\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\" data-select2-id=\\"1106\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\" data-select2-id=\\"1107\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\" data-select2-id=\\"1108\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\" data-select2-id=\\"1109\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\" data-select2-id=\\"1110\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\" data-select2-id=\\"1111\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\" data-select2-id=\\"1112\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\" data-select2-id=\\"1113\\">Description</option><option value=\\"automation_multiple_attachment\\" data-select2-id=\\"1114\\">Attachment</option><option value=\\"automation_multiple_status\\" data-select2-id=\\"1115\\">Status</option><option value=\\"automation_multiple_requested_date\\" data-select2-id=\\"1116\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\" data-select2-id=\\"1117\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\" data-select2-id=\\"1118\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\" data-select2-id=\\"1119\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\" data-select2-id=\\"1120\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\" data-select2-id=\\"1121\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\" data-select2-id=\\"1122\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\" data-select2-id=\\"1123\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\" data-select2-id=\\"1124\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\" data-select2-id=\\"1125\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\" data-select2-id=\\"1126\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\" data-select2-id=\\"1127\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\" data-select2-id=\\"1128\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\" data-select2-id=\\"1129\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\" data-select2-id=\\"1130\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\" data-select2-id=\\"1131\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\" data-select2-id=\\"1132\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\" data-select2-id=\\"1133\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\" data-select2-id=\\"1134\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\" data-select2-id=\\"1135\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\" data-select2-id=\\"1136\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\" data-select2-id=\\"1137\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\" data-select2-id=\\"1138\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\" data-select2-id=\\"1139\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\" data-select2-id=\\"1140\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\" data-select2-id=\\"1141\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\" data-select2-id=\\"1142\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\" data-select2-id=\\"1143\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1166\\" style=\\"width: 117.9px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-ka-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-ka-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" data-select2-id=\\"765\\" tabindex=\\"-1\\" aria-hidden=\\"true\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"767\\">==</option>\\r\\n <option value=\\"!=\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1167\\" style=\\"width: 59.7125px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-yp-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-yp-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\" data-select2-id=\\"1171\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" data-select2-id=\\"1147\\" tabindex=\\"-1\\" class=\\"w-100 select2-hidden-accessible\\" aria-hidden=\\"true\\"><option value=\\"5\\" data-select2-id=\\"1149\\">Intern Casual Leave</option><option value=\\"4\\" data-select2-id=\\"1173\\">Casual Leave</option><option value=\\"3\\" data-select2-id=\\"1174\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default select2-container--below select2-container--focus\\" dir=\\"ltr\\" data-select2-id=\\"1168\\" style=\\"width: 171.163px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-44-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-44-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Casual Leave\\">Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" data-select2-id=\\"768\\" tabindex=\\"-1\\" aria-hidden=\\"true\\">\\r\\n <option value=\\"and\\" data-select2-id=\\"770\\">And</option>\\r\\n <option value=\\"or\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1169\\" style=\\"width: 55.6125px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-42-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-42-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"And\\">And</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr></tbody></table>\\r\\n </form>\\r\\n <script>\\r\\n $(\\"#multipleConditionTable\\").closest(\\"[contenteditable=true]\\").removeAttr(\\"contenteditable\\");\\r\\n </script>", "<form id=\\"multipleConditionForm\\" data-select2-id=\\"multipleConditionForm\\"><table id=\\"multipleConditionTable\\" data-select2-id=\\"multipleConditionTable\\">\\r\\n <tbody data-select2-id=\\"1053\\"><tr>\\r\\n <th>Code</th>\\r\\n <th>Field</th>\\r\\n <th>Condition</th>\\r\\n <th>Value</th>\\r\\n <th>Logic</th>\\r\\n <th>\\r\\n Action\\r\\n <span title=\\"Reload\\" onclick=\\"$('[name=model]').change()\\">\\r\\n <ion-icon name=\\"refresh-circle\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"refresh circle\\"></ion-icon>\\r\\n </span>\\r\\n </th>\\r\\n </tr>\\r\\n <tr class=\\"dynamic-condition-row\\">\\r\\n <td class=\\"sn\\">C1</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\" data-select2-id=\\"1150\\"><option value=\\"automation_multiple_is_active\\">Is Active</option><option value=\\"automation_multiple_employee_id\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" selected=\\"selected\\" data-select2-id=\\"1152\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\">Description</option><option value=\\"automation_multiple_attachment\\">Attachment</option><option value=\\"automation_multiple_status\\">Status</option><option value=\\"automation_multiple_requested_date\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1262\\" style=\\"width: 126.225px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-pd-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-pd-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1154\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"1156\\">==</option>\\r\\n <option value=\\"!=\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1264\\" style=\\"width: 59.7125px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-5l-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-5l-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" tabindex=\\"-1\\" class=\\"select2-hidden-accessible\\" aria-hidden=\\"true\\" data-select2-id=\\"1159\\"><option value=\\"5\\" data-select2-id=\\"1161\\">Intern Casual Leave</option><option value=\\"4\\">Casual Leave</option><option value=\\"3\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1267\\" style=\\"width: 176.8px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-ly-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-ly-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Intern Casual Leave\\">Intern Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1163\\">\\r\\n <option value=\\"and\\" data-select2-id=\\"1165\\">And</option>\\r\\n <option value=\\"or\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1269\\" style=\\"width: 38.2875px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-dz-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-dz-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"And\\">And</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr>\\r\\n \\r\\n \\r\\n \\r\\n <tr class=\\"dynamic-condition-row\\" data-select2-id=\\"1172\\">\\r\\n <td class=\\"sn\\">C2</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" data-select2-id=\\"762\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\"><option value=\\"automation_multiple_is_active\\" data-select2-id=\\"764\\">Is Active</option><option value=\\"automation_multiple_employee_id\\" data-select2-id=\\"1057\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\" data-select2-id=\\"1058\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\" data-select2-id=\\"1059\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\" data-select2-id=\\"1060\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\" data-select2-id=\\"1061\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\" data-select2-id=\\"1062\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\" data-select2-id=\\"1063\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\" data-select2-id=\\"1064\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\" data-select2-id=\\"1065\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\" data-select2-id=\\"1066\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\" data-select2-id=\\"1067\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\" data-select2-id=\\"1068\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\" data-select2-id=\\"1069\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\" data-select2-id=\\"1070\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\" data-select2-id=\\"1071\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\" data-select2-id=\\"1072\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\" data-select2-id=\\"1073\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\" data-select2-id=\\"1074\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\" data-select2-id=\\"1075\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\" data-select2-id=\\"1076\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\" data-select2-id=\\"1077\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\" data-select2-id=\\"1078\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\" data-select2-id=\\"1079\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\" data-select2-id=\\"1080\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" data-select2-id=\\"1081\\" selected=\\"selected\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\" data-select2-id=\\"1082\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\" data-select2-id=\\"1083\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\" data-select2-id=\\"1084\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\" data-select2-id=\\"1085\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\" data-select2-id=\\"1086\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\" data-select2-id=\\"1087\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\" data-select2-id=\\"1088\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\" data-select2-id=\\"1089\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\" data-select2-id=\\"1090\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\" data-select2-id=\\"1091\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\" data-select2-id=\\"1092\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\" data-select2-id=\\"1093\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\" data-select2-id=\\"1094\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\" data-select2-id=\\"1095\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\" data-select2-id=\\"1096\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\" data-select2-id=\\"1097\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\" data-select2-id=\\"1098\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\" data-select2-id=\\"1099\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\" data-select2-id=\\"1100\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\" data-select2-id=\\"1101\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\" data-select2-id=\\"1102\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\" data-select2-id=\\"1103\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\" data-select2-id=\\"1104\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\" data-select2-id=\\"1105\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\" data-select2-id=\\"1106\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\" data-select2-id=\\"1107\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\" data-select2-id=\\"1108\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\" data-select2-id=\\"1109\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\" data-select2-id=\\"1110\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\" data-select2-id=\\"1111\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\" data-select2-id=\\"1112\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\" data-select2-id=\\"1113\\">Description</option><option value=\\"automation_multiple_attachment\\" data-select2-id=\\"1114\\">Attachment</option><option value=\\"automation_multiple_status\\" data-select2-id=\\"1115\\">Status</option><option value=\\"automation_multiple_requested_date\\" data-select2-id=\\"1116\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\" data-select2-id=\\"1117\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\" data-select2-id=\\"1118\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\" data-select2-id=\\"1119\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\" data-select2-id=\\"1120\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\" data-select2-id=\\"1121\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\" data-select2-id=\\"1122\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\" data-select2-id=\\"1123\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\" data-select2-id=\\"1124\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\" data-select2-id=\\"1125\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\" data-select2-id=\\"1126\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\" data-select2-id=\\"1127\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\" data-select2-id=\\"1128\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\" data-select2-id=\\"1129\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\" data-select2-id=\\"1130\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\" data-select2-id=\\"1131\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\" data-select2-id=\\"1132\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\" data-select2-id=\\"1133\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\" data-select2-id=\\"1134\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\" data-select2-id=\\"1135\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\" data-select2-id=\\"1136\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\" data-select2-id=\\"1137\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\" data-select2-id=\\"1138\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\" data-select2-id=\\"1139\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\" data-select2-id=\\"1140\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\" data-select2-id=\\"1141\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\" data-select2-id=\\"1142\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\" data-select2-id=\\"1143\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1270\\" style=\\"width: 137.262px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-n7-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-n7-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" data-select2-id=\\"765\\" tabindex=\\"-1\\" aria-hidden=\\"true\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"767\\">==</option>\\r\\n <option value=\\"!=\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1272\\" style=\\"width: 62.0625px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-2t-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-2t-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\" data-select2-id=\\"1171\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" data-select2-id=\\"1147\\" tabindex=\\"-1\\" class=\\"w-100 select2-hidden-accessible\\" aria-hidden=\\"true\\"><option value=\\"5\\" data-select2-id=\\"1149\\">Intern Casual Leave</option><option value=\\"4\\" data-select2-id=\\"1173\\">Casual Leave</option><option value=\\"3\\" data-select2-id=\\"1174\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default select2-container--below select2-container--focus\\" dir=\\"ltr\\" data-select2-id=\\"1273\\" style=\\"width: 183.288px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-jm-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-jm-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Casual Leave\\">Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" data-select2-id=\\"768\\" tabindex=\\"-1\\" aria-hidden=\\"true\\">\\r\\n <option value=\\"and\\" data-select2-id=\\"770\\">And</option>\\r\\n <option value=\\"or\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1275\\" style=\\"width: 58.7375px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-fp-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-fp-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"And\\">And</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr></tbody></table></form>"], "condition_html": ["<table id=\\"multipleConditionTable\\" data-select2-id=\\"multipleConditionTable\\">\\r\\n <tbody data-select2-id=\\"1053\\"><tr>\\r\\n <th>Code</th>\\r\\n <th>Field</th>\\r\\n <th>Condition</th>\\r\\n <th>Value</th>\\r\\n <th>Logic</th>\\r\\n <th>\\r\\n Action\\r\\n <span title=\\"Reload\\" onclick=\\"$('[name=model]').change()\\">\\r\\n <ion-icon name=\\"refresh-circle\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"refresh circle\\"></ion-icon>\\r\\n </span>\\r\\n </th>\\r\\n </tr>\\r\\n <tr class=\\"dynamic-condition-row\\">\\r\\n <td class=\\"sn\\">C1</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\" data-select2-id=\\"1150\\"><option value=\\"automation_multiple_is_active\\">Is Active</option><option value=\\"automation_multiple_employee_id\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" selected=\\"selected\\" data-select2-id=\\"1152\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\">Description</option><option value=\\"automation_multiple_attachment\\">Attachment</option><option value=\\"automation_multiple_status\\">Status</option><option value=\\"automation_multiple_requested_date\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1151\\" style=\\"width: 110.713px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"0\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-8q-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-8q-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1154\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"1156\\">==</option>\\r\\n <option value=\\"!=\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1155\\" style=\\"width: 59.7125px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"0\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-ju-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-ju-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" tabindex=\\"-1\\" class=\\"select2-hidden-accessible\\" aria-hidden=\\"true\\" data-select2-id=\\"1159\\"><option value=\\"5\\" data-select2-id=\\"1161\\">Intern Casual Leave</option><option value=\\"4\\">Casual Leave</option><option value=\\"3\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1160\\" style=\\"width: 176.8px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"0\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-0l-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-0l-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Intern Casual Leave\\">Intern Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1163\\">\\r\\n <option value=\\"and\\" data-select2-id=\\"1165\\">And</option>\\r\\n <option value=\\"or\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1164\\" style=\\"width: 36.875px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"0\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-y3-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-y3-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"And\\">And</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr>\\r\\n \\r\\n \\r\\n \\r\\n <tr class=\\"dynamic-condition-row\\" data-select2-id=\\"1172\\">\\r\\n <td class=\\"sn\\">C2</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" data-select2-id=\\"762\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\"><option value=\\"automation_multiple_is_active\\" data-select2-id=\\"764\\">Is Active</option><option value=\\"automation_multiple_employee_id\\" data-select2-id=\\"1057\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\" data-select2-id=\\"1058\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\" data-select2-id=\\"1059\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\" data-select2-id=\\"1060\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\" data-select2-id=\\"1061\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\" data-select2-id=\\"1062\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\" data-select2-id=\\"1063\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\" data-select2-id=\\"1064\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\" data-select2-id=\\"1065\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\" data-select2-id=\\"1066\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\" data-select2-id=\\"1067\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\" data-select2-id=\\"1068\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\" data-select2-id=\\"1069\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\" data-select2-id=\\"1070\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\" data-select2-id=\\"1071\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\" data-select2-id=\\"1072\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\" data-select2-id=\\"1073\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\" data-select2-id=\\"1074\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\" data-select2-id=\\"1075\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\" data-select2-id=\\"1076\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\" data-select2-id=\\"1077\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\" data-select2-id=\\"1078\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\" data-select2-id=\\"1079\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\" data-select2-id=\\"1080\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" data-select2-id=\\"1081\\" selected=\\"selected\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\" data-select2-id=\\"1082\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\" data-select2-id=\\"1083\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\" data-select2-id=\\"1084\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\" data-select2-id=\\"1085\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\" data-select2-id=\\"1086\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\" data-select2-id=\\"1087\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\" data-select2-id=\\"1088\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\" data-select2-id=\\"1089\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\" data-select2-id=\\"1090\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\" data-select2-id=\\"1091\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\" data-select2-id=\\"1092\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\" data-select2-id=\\"1093\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\" data-select2-id=\\"1094\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\" data-select2-id=\\"1095\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\" data-select2-id=\\"1096\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\" data-select2-id=\\"1097\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\" data-select2-id=\\"1098\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\" data-select2-id=\\"1099\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\" data-select2-id=\\"1100\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\" data-select2-id=\\"1101\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\" data-select2-id=\\"1102\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\" data-select2-id=\\"1103\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\" data-select2-id=\\"1104\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\" data-select2-id=\\"1105\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\" data-select2-id=\\"1106\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\" data-select2-id=\\"1107\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\" data-select2-id=\\"1108\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\" data-select2-id=\\"1109\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\" data-select2-id=\\"1110\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\" data-select2-id=\\"1111\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\" data-select2-id=\\"1112\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\" data-select2-id=\\"1113\\">Description</option><option value=\\"automation_multiple_attachment\\" data-select2-id=\\"1114\\">Attachment</option><option value=\\"automation_multiple_status\\" data-select2-id=\\"1115\\">Status</option><option value=\\"automation_multiple_requested_date\\" data-select2-id=\\"1116\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\" data-select2-id=\\"1117\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\" data-select2-id=\\"1118\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\" data-select2-id=\\"1119\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\" data-select2-id=\\"1120\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\" data-select2-id=\\"1121\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\" data-select2-id=\\"1122\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\" data-select2-id=\\"1123\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\" data-select2-id=\\"1124\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\" data-select2-id=\\"1125\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\" data-select2-id=\\"1126\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\" data-select2-id=\\"1127\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\" data-select2-id=\\"1128\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\" data-select2-id=\\"1129\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\" data-select2-id=\\"1130\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\" data-select2-id=\\"1131\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\" data-select2-id=\\"1132\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\" data-select2-id=\\"1133\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\" data-select2-id=\\"1134\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\" data-select2-id=\\"1135\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\" data-select2-id=\\"1136\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\" data-select2-id=\\"1137\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\" data-select2-id=\\"1138\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\" data-select2-id=\\"1139\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\" data-select2-id=\\"1140\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\" data-select2-id=\\"1141\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\" data-select2-id=\\"1142\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\" data-select2-id=\\"1143\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1166\\" style=\\"width: 117.9px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-ka-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-ka-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" data-select2-id=\\"765\\" tabindex=\\"-1\\" aria-hidden=\\"true\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"767\\">==</option>\\r\\n <option value=\\"!=\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1167\\" style=\\"width: 59.7125px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-yp-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-yp-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\" data-select2-id=\\"1171\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" data-select2-id=\\"1147\\" tabindex=\\"-1\\" class=\\"w-100 select2-hidden-accessible\\" aria-hidden=\\"true\\"><option value=\\"5\\" data-select2-id=\\"1149\\">Intern Casual Leave</option><option value=\\"4\\" data-select2-id=\\"1173\\">Casual Leave</option><option value=\\"3\\" data-select2-id=\\"1174\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default select2-container--below\\" dir=\\"ltr\\" data-select2-id=\\"1168\\" style=\\"width: 171.163px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-44-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-44-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Casual Leave\\">Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" data-select2-id=\\"768\\" tabindex=\\"-1\\" aria-hidden=\\"true\\">\\r\\n <option value=\\"and\\" data-select2-id=\\"770\\">And</option>\\r\\n <option value=\\"or\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1169\\" style=\\"width: 55.6125px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-42-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-42-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"And\\">And</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr></tbody></table>", "<table id=\\"multipleConditionTable\\" data-select2-id=\\"multipleConditionTable\\">\\r\\n <tbody data-select2-id=\\"1053\\"><tr>\\r\\n <th>Code</th>\\r\\n <th>Field</th>\\r\\n <th>Condition</th>\\r\\n <th>Value</th>\\r\\n <th>Logic</th>\\r\\n <th>\\r\\n Action\\r\\n <span title=\\"Reload\\" onclick=\\"$('[name=model]').change()\\">\\r\\n <ion-icon name=\\"refresh-circle\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"refresh circle\\"></ion-icon>\\r\\n </span>\\r\\n </th>\\r\\n </tr>\\r\\n <tr class=\\"dynamic-condition-row\\">\\r\\n <td class=\\"sn\\">C1</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\" data-select2-id=\\"1150\\"><option value=\\"automation_multiple_is_active\\">Is Active</option><option value=\\"automation_multiple_employee_id\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" selected=\\"selected\\" data-select2-id=\\"1152\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\">Description</option><option value=\\"automation_multiple_attachment\\">Attachment</option><option value=\\"automation_multiple_status\\">Status</option><option value=\\"automation_multiple_requested_date\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1262\\" style=\\"width: 126.225px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-pd-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-pd-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1154\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"1156\\">==</option>\\r\\n <option value=\\"!=\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1264\\" style=\\"width: 59.7125px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-5l-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-5l-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" tabindex=\\"-1\\" class=\\"select2-hidden-accessible\\" aria-hidden=\\"true\\" data-select2-id=\\"1159\\"><option value=\\"5\\" data-select2-id=\\"1161\\">Intern Casual Leave</option><option value=\\"4\\">Casual Leave</option><option value=\\"3\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1267\\" style=\\"width: 176.8px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-ly-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-ly-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Intern Casual Leave\\">Intern Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1163\\">\\r\\n <option value=\\"and\\" data-select2-id=\\"1165\\">And</option>\\r\\n <option value=\\"or\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1269\\" style=\\"width: 38.2875px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-dz-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-dz-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"And\\">And</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr>\\r\\n \\r\\n \\r\\n \\r\\n <tr class=\\"dynamic-condition-row\\" data-select2-id=\\"1172\\">\\r\\n <td class=\\"sn\\">C2</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" data-select2-id=\\"762\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\"><option value=\\"automation_multiple_is_active\\" data-select2-id=\\"764\\">Is Active</option><option value=\\"automation_multiple_employee_id\\" data-select2-id=\\"1057\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\" data-select2-id=\\"1058\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\" data-select2-id=\\"1059\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\" data-select2-id=\\"1060\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\" data-select2-id=\\"1061\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\" data-select2-id=\\"1062\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\" data-select2-id=\\"1063\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\" data-select2-id=\\"1064\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\" data-select2-id=\\"1065\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\" data-select2-id=\\"1066\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\" data-select2-id=\\"1067\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\" data-select2-id=\\"1068\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\" data-select2-id=\\"1069\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\" data-select2-id=\\"1070\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\" data-select2-id=\\"1071\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\" data-select2-id=\\"1072\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\" data-select2-id=\\"1073\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\" data-select2-id=\\"1074\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\" data-select2-id=\\"1075\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\" data-select2-id=\\"1076\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\" data-select2-id=\\"1077\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\" data-select2-id=\\"1078\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\" data-select2-id=\\"1079\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\" data-select2-id=\\"1080\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" data-select2-id=\\"1081\\" selected=\\"selected\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\" data-select2-id=\\"1082\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\" data-select2-id=\\"1083\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\" data-select2-id=\\"1084\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\" data-select2-id=\\"1085\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\" data-select2-id=\\"1086\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\" data-select2-id=\\"1087\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\" data-select2-id=\\"1088\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\" data-select2-id=\\"1089\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\" data-select2-id=\\"1090\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\" data-select2-id=\\"1091\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\" data-select2-id=\\"1092\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\" data-select2-id=\\"1093\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\" data-select2-id=\\"1094\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\" data-select2-id=\\"1095\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\" data-select2-id=\\"1096\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\" data-select2-id=\\"1097\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\" data-select2-id=\\"1098\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\" data-select2-id=\\"1099\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\" data-select2-id=\\"1100\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\" data-select2-id=\\"1101\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\" data-select2-id=\\"1102\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\" data-select2-id=\\"1103\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\" data-select2-id=\\"1104\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\" data-select2-id=\\"1105\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\" data-select2-id=\\"1106\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\" data-select2-id=\\"1107\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\" data-select2-id=\\"1108\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\" data-select2-id=\\"1109\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\" data-select2-id=\\"1110\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\" data-select2-id=\\"1111\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\" data-select2-id=\\"1112\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\" data-select2-id=\\"1113\\">Description</option><option value=\\"automation_multiple_attachment\\" data-select2-id=\\"1114\\">Attachment</option><option value=\\"automation_multiple_status\\" data-select2-id=\\"1115\\">Status</option><option value=\\"automation_multiple_requested_date\\" data-select2-id=\\"1116\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\" data-select2-id=\\"1117\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\" data-select2-id=\\"1118\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\" data-select2-id=\\"1119\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\" data-select2-id=\\"1120\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\" data-select2-id=\\"1121\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\" data-select2-id=\\"1122\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\" data-select2-id=\\"1123\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\" data-select2-id=\\"1124\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\" data-select2-id=\\"1125\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\" data-select2-id=\\"1126\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\" data-select2-id=\\"1127\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\" data-select2-id=\\"1128\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\" data-select2-id=\\"1129\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\" data-select2-id=\\"1130\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\" data-select2-id=\\"1131\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\" data-select2-id=\\"1132\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\" data-select2-id=\\"1133\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\" data-select2-id=\\"1134\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\" data-select2-id=\\"1135\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\" data-select2-id=\\"1136\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\" data-select2-id=\\"1137\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\" data-select2-id=\\"1138\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\" data-select2-id=\\"1139\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\" data-select2-id=\\"1140\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\" data-select2-id=\\"1141\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\" data-select2-id=\\"1142\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\" data-select2-id=\\"1143\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1270\\" style=\\"width: 137.262px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-n7-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-n7-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" data-select2-id=\\"765\\" tabindex=\\"-1\\" aria-hidden=\\"true\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"767\\">==</option>\\r\\n <option value=\\"!=\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1272\\" style=\\"width: 62.0625px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-2t-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-2t-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\" data-select2-id=\\"1171\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" data-select2-id=\\"1147\\" tabindex=\\"-1\\" class=\\"w-100 select2-hidden-accessible\\" aria-hidden=\\"true\\"><option value=\\"5\\" data-select2-id=\\"1149\\">Intern Casual Leave</option><option value=\\"4\\" data-select2-id=\\"1173\\">Casual Leave</option><option value=\\"3\\" data-select2-id=\\"1174\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default select2-container--below\\" dir=\\"ltr\\" data-select2-id=\\"1273\\" style=\\"width: 183.288px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-jm-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-jm-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Casual Leave\\">Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" data-select2-id=\\"768\\" tabindex=\\"-1\\" aria-hidden=\\"true\\">\\r\\n <option value=\\"and\\" data-select2-id=\\"770\\">And</option>\\r\\n <option value=\\"or\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1275\\" style=\\"width: 58.7375px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-fp-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-fp-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"And\\">And</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr></tbody></table>"]} 2025-02-03 10:26:52.440374+00 273 193 122.176.134.248 \N \N \N
4841 18 18 EmailLog object (18) 0 {"id": ["None", "18"], "to": ["None", "['yogesh.sharma@growthnatives.co']"], "body": ["None", "\\n \\n \\n \\n \\n \\n Horilla\\n \\n \\n \\n \\n Email tested successfully\\n Hi,\\n This email is being sent as part of mail sever testing from Horilla.\\n \\n \\n \\n \\n \\n © 2025 Growthnatives, Inc.\\n \\n \\n \\n \\n \\n "], "status": ["None", "sent"], "subject": ["None", "Test mail from Horilla"], "created_at": ["None", "2025-02-03 10:26:56.369444"], "from_email": ["None", "info viva india.team <info@growthnatives.com>"]} 2025-02-03 10:26:56.376088+00 273 23 122.176.134.248 \N \N \N
4842 3 3 Leave Request 1 {"condition": ["<form id=\\"multipleConditionForm\\" data-select2-id=\\"multipleConditionForm\\"><table id=\\"multipleConditionTable\\" data-select2-id=\\"multipleConditionTable\\">\\r\\n <tbody data-select2-id=\\"1053\\"><tr>\\r\\n <th>Code</th>\\r\\n <th>Field</th>\\r\\n <th>Condition</th>\\r\\n <th>Value</th>\\r\\n <th>Logic</th>\\r\\n <th>\\r\\n Action\\r\\n <span title=\\"Reload\\" onclick=\\"$('[name=model]').change()\\">\\r\\n <ion-icon name=\\"refresh-circle\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"refresh circle\\"></ion-icon>\\r\\n </span>\\r\\n </th>\\r\\n </tr>\\r\\n <tr class=\\"dynamic-condition-row\\">\\r\\n <td class=\\"sn\\">C1</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\" data-select2-id=\\"1150\\"><option value=\\"automation_multiple_is_active\\">Is Active</option><option value=\\"automation_multiple_employee_id\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" selected=\\"selected\\" data-select2-id=\\"1152\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\">Description</option><option value=\\"automation_multiple_attachment\\">Attachment</option><option value=\\"automation_multiple_status\\">Status</option><option value=\\"automation_multiple_requested_date\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1262\\" style=\\"width: 126.225px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-pd-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-pd-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1154\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"1156\\">==</option>\\r\\n <option value=\\"!=\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1264\\" style=\\"width: 59.7125px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-5l-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-5l-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" tabindex=\\"-1\\" class=\\"select2-hidden-accessible\\" aria-hidden=\\"true\\" data-select2-id=\\"1159\\"><option value=\\"5\\" data-select2-id=\\"1161\\">Intern Casual Leave</option><option value=\\"4\\">Casual Leave</option><option value=\\"3\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1267\\" style=\\"width: 176.8px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-ly-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-ly-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Intern Casual Leave\\">Intern Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1163\\">\\r\\n <option value=\\"and\\" data-select2-id=\\"1165\\">And</option>\\r\\n <option value=\\"or\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1269\\" style=\\"width: 38.2875px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-dz-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-dz-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"And\\">And</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr>\\r\\n \\r\\n \\r\\n \\r\\n <tr class=\\"dynamic-condition-row\\" data-select2-id=\\"1172\\">\\r\\n <td class=\\"sn\\">C2</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" data-select2-id=\\"762\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\"><option value=\\"automation_multiple_is_active\\" data-select2-id=\\"764\\">Is Active</option><option value=\\"automation_multiple_employee_id\\" data-select2-id=\\"1057\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\" data-select2-id=\\"1058\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\" data-select2-id=\\"1059\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\" data-select2-id=\\"1060\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\" data-select2-id=\\"1061\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\" data-select2-id=\\"1062\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\" data-select2-id=\\"1063\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\" data-select2-id=\\"1064\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\" data-select2-id=\\"1065\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\" data-select2-id=\\"1066\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\" data-select2-id=\\"1067\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\" data-select2-id=\\"1068\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\" data-select2-id=\\"1069\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\" data-select2-id=\\"1070\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\" data-select2-id=\\"1071\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\" data-select2-id=\\"1072\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\" data-select2-id=\\"1073\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\" data-select2-id=\\"1074\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\" data-select2-id=\\"1075\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\" data-select2-id=\\"1076\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\" data-select2-id=\\"1077\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\" data-select2-id=\\"1078\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\" data-select2-id=\\"1079\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\" data-select2-id=\\"1080\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" data-select2-id=\\"1081\\" selected=\\"selected\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\" data-select2-id=\\"1082\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\" data-select2-id=\\"1083\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\" data-select2-id=\\"1084\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\" data-select2-id=\\"1085\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\" data-select2-id=\\"1086\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\" data-select2-id=\\"1087\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\" data-select2-id=\\"1088\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\" data-select2-id=\\"1089\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\" data-select2-id=\\"1090\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\" data-select2-id=\\"1091\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\" data-select2-id=\\"1092\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\" data-select2-id=\\"1093\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\" data-select2-id=\\"1094\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\" data-select2-id=\\"1095\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\" data-select2-id=\\"1096\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\" data-select2-id=\\"1097\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\" data-select2-id=\\"1098\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\" data-select2-id=\\"1099\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\" data-select2-id=\\"1100\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\" data-select2-id=\\"1101\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\" data-select2-id=\\"1102\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\" data-select2-id=\\"1103\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\" data-select2-id=\\"1104\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\" data-select2-id=\\"1105\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\" data-select2-id=\\"1106\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\" data-select2-id=\\"1107\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\" data-select2-id=\\"1108\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\" data-select2-id=\\"1109\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\" data-select2-id=\\"1110\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\" data-select2-id=\\"1111\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\" data-select2-id=\\"1112\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\" data-select2-id=\\"1113\\">Description</option><option value=\\"automation_multiple_attachment\\" data-select2-id=\\"1114\\">Attachment</option><option value=\\"automation_multiple_status\\" data-select2-id=\\"1115\\">Status</option><option value=\\"automation_multiple_requested_date\\" data-select2-id=\\"1116\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\" data-select2-id=\\"1117\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\" data-select2-id=\\"1118\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\" data-select2-id=\\"1119\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\" data-select2-id=\\"1120\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\" data-select2-id=\\"1121\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\" data-select2-id=\\"1122\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\" data-select2-id=\\"1123\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\" data-select2-id=\\"1124\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\" data-select2-id=\\"1125\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\" data-select2-id=\\"1126\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\" data-select2-id=\\"1127\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\" data-select2-id=\\"1128\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\" data-select2-id=\\"1129\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\" data-select2-id=\\"1130\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\" data-select2-id=\\"1131\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\" data-select2-id=\\"1132\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\" data-select2-id=\\"1133\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\" data-select2-id=\\"1134\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\" data-select2-id=\\"1135\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\" data-select2-id=\\"1136\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\" data-select2-id=\\"1137\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\" data-select2-id=\\"1138\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\" data-select2-id=\\"1139\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\" data-select2-id=\\"1140\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\" data-select2-id=\\"1141\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\" data-select2-id=\\"1142\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\" data-select2-id=\\"1143\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1270\\" style=\\"width: 137.262px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-n7-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-n7-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" data-select2-id=\\"765\\" tabindex=\\"-1\\" aria-hidden=\\"true\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"767\\">==</option>\\r\\n <option value=\\"!=\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1272\\" style=\\"width: 62.0625px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-2t-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-2t-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\" data-select2-id=\\"1171\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" data-select2-id=\\"1147\\" tabindex=\\"-1\\" class=\\"w-100 select2-hidden-accessible\\" aria-hidden=\\"true\\"><option value=\\"5\\" data-select2-id=\\"1149\\">Intern Casual Leave</option><option value=\\"4\\" data-select2-id=\\"1173\\">Casual Leave</option><option value=\\"3\\" data-select2-id=\\"1174\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default select2-container--below select2-container--focus\\" dir=\\"ltr\\" data-select2-id=\\"1273\\" style=\\"width: 183.288px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-jm-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-jm-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Casual Leave\\">Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" data-select2-id=\\"768\\" tabindex=\\"-1\\" aria-hidden=\\"true\\">\\r\\n <option value=\\"and\\" data-select2-id=\\"770\\">And</option>\\r\\n <option value=\\"or\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1275\\" style=\\"width: 58.7375px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-fp-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-fp-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"And\\">And</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr></tbody></table></form>", "<form id=\\"multipleConditionForm\\" data-select2-id=\\"multipleConditionForm\\"><table id=\\"multipleConditionTable\\" data-select2-id=\\"multipleConditionTable\\">\\r\\n <tbody data-select2-id=\\"1053\\"><tr>\\r\\n <th>Code</th>\\r\\n <th>Field</th>\\r\\n <th>Condition</th>\\r\\n <th>Value</th>\\r\\n <th>Logic</th>\\r\\n <th>\\r\\n Action\\r\\n <span title=\\"Reload\\" onclick=\\"$('[name=model]').change()\\">\\r\\n <ion-icon name=\\"refresh-circle\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"refresh circle\\"></ion-icon>\\r\\n </span>\\r\\n </th>\\r\\n </tr>\\r\\n <tr class=\\"dynamic-condition-row\\" data-select2-id=\\"3072\\">\\r\\n <td class=\\"sn\\">C1</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\" data-select2-id=\\"1150\\"><option value=\\"automation_multiple_is_active\\">Is Active</option><option value=\\"automation_multiple_employee_id\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" selected=\\"selected\\" data-select2-id=\\"1152\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\">Description</option><option value=\\"automation_multiple_attachment\\">Attachment</option><option value=\\"automation_multiple_status\\">Status</option><option value=\\"automation_multiple_requested_date\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"2029\\" style=\\"width: 126.225px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-7w-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-7w-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1154\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"1156\\">==</option>\\r\\n <option value=\\"!=\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"2031\\" style=\\"width: 59.7125px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-u7-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-u7-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" tabindex=\\"-1\\" class=\\"select2-hidden-accessible\\" aria-hidden=\\"true\\" data-select2-id=\\"1159\\"><option value=\\"5\\" data-select2-id=\\"1161\\">Intern Casual Leave</option><option value=\\"4\\">Casual Leave</option><option value=\\"3\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"2034\\" style=\\"width: 176.8px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-nh-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-nh-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Intern Casual Leave\\">Intern Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"3071\\">\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1163\\">\\r\\n <option value=\\"and\\" data-select2-id=\\"1165\\">And</option>\\r\\n <option value=\\"or\\" data-select2-id=\\"3073\\" selected=\\"selected\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default select2-container--below\\" dir=\\"ltr\\" data-select2-id=\\"2036\\" style=\\"width: 38.2875px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-an-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-an-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Or\\">Or</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr>\\r\\n \\r\\n \\r\\n \\r\\n <tr class=\\"dynamic-condition-row\\" data-select2-id=\\"1172\\">\\r\\n <td class=\\"sn\\">C2</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" data-select2-id=\\"762\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\"><option value=\\"automation_multiple_is_active\\" data-select2-id=\\"764\\">Is Active</option><option value=\\"automation_multiple_employee_id\\" data-select2-id=\\"1057\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\" data-select2-id=\\"1058\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\" data-select2-id=\\"1059\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\" data-select2-id=\\"1060\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\" data-select2-id=\\"1061\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\" data-select2-id=\\"1062\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\" data-select2-id=\\"1063\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\" data-select2-id=\\"1064\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\" data-select2-id=\\"1065\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\" data-select2-id=\\"1066\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\" data-select2-id=\\"1067\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\" data-select2-id=\\"1068\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\" data-select2-id=\\"1069\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\" data-select2-id=\\"1070\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\" data-select2-id=\\"1071\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\" data-select2-id=\\"1072\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\" data-select2-id=\\"1073\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\" data-select2-id=\\"1074\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\" data-select2-id=\\"1075\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\" data-select2-id=\\"1076\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\" data-select2-id=\\"1077\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\" data-select2-id=\\"1078\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\" data-select2-id=\\"1079\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\" data-select2-id=\\"1080\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" data-select2-id=\\"1081\\" selected=\\"selected\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\" data-select2-id=\\"1082\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\" data-select2-id=\\"1083\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\" data-select2-id=\\"1084\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\" data-select2-id=\\"1085\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\" data-select2-id=\\"1086\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\" data-select2-id=\\"1087\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\" data-select2-id=\\"1088\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\" data-select2-id=\\"1089\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\" data-select2-id=\\"1090\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\" data-select2-id=\\"1091\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\" data-select2-id=\\"1092\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\" data-select2-id=\\"1093\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\" data-select2-id=\\"1094\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\" data-select2-id=\\"1095\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\" data-select2-id=\\"1096\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\" data-select2-id=\\"1097\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\" data-select2-id=\\"1098\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\" data-select2-id=\\"1099\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\" data-select2-id=\\"1100\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\" data-select2-id=\\"1101\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\" data-select2-id=\\"1102\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\" data-select2-id=\\"1103\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\" data-select2-id=\\"1104\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\" data-select2-id=\\"1105\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\" data-select2-id=\\"1106\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\" data-select2-id=\\"1107\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\" data-select2-id=\\"1108\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\" data-select2-id=\\"1109\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\" data-select2-id=\\"1110\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\" data-select2-id=\\"1111\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\" data-select2-id=\\"1112\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\" data-select2-id=\\"1113\\">Description</option><option value=\\"automation_multiple_attachment\\" data-select2-id=\\"1114\\">Attachment</option><option value=\\"automation_multiple_status\\" data-select2-id=\\"1115\\">Status</option><option value=\\"automation_multiple_requested_date\\" data-select2-id=\\"1116\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\" data-select2-id=\\"1117\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\" data-select2-id=\\"1118\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\" data-select2-id=\\"1119\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\" data-select2-id=\\"1120\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\" data-select2-id=\\"1121\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\" data-select2-id=\\"1122\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\" data-select2-id=\\"1123\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\" data-select2-id=\\"1124\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\" data-select2-id=\\"1125\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\" data-select2-id=\\"1126\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\" data-select2-id=\\"1127\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\" data-select2-id=\\"1128\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\" data-select2-id=\\"1129\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\" data-select2-id=\\"1130\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\" data-select2-id=\\"1131\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\" data-select2-id=\\"1132\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\" data-select2-id=\\"1133\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\" data-select2-id=\\"1134\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\" data-select2-id=\\"1135\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\" data-select2-id=\\"1136\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\" data-select2-id=\\"1137\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\" data-select2-id=\\"1138\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\" data-select2-id=\\"1139\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\" data-select2-id=\\"1140\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\" data-select2-id=\\"1141\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\" data-select2-id=\\"1142\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\" data-select2-id=\\"1143\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"2037\\" style=\\"width: 137.262px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-e9-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-e9-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"3062\\">\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" data-select2-id=\\"765\\" tabindex=\\"-1\\" aria-hidden=\\"true\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"767\\">==</option>\\r\\n <option value=\\"!=\\" data-select2-id=\\"3069\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default select2-container--below\\" dir=\\"ltr\\" data-select2-id=\\"2039\\" style=\\"width: 62.0625px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-nj-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-nj-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\" data-select2-id=\\"1171\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" data-select2-id=\\"1147\\" tabindex=\\"-1\\" class=\\"w-100 select2-hidden-accessible\\" aria-hidden=\\"true\\"><option value=\\"5\\" data-select2-id=\\"1149\\">Intern Casual Leave</option><option value=\\"4\\" data-select2-id=\\"1173\\">Casual Leave</option><option value=\\"3\\" data-select2-id=\\"1174\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default select2-container--below select2-container--focus\\" dir=\\"ltr\\" data-select2-id=\\"2040\\" style=\\"width: 183.288px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-bd-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-bd-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Casual Leave\\">Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"3075\\">\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" data-select2-id=\\"768\\" tabindex=\\"-1\\" aria-hidden=\\"true\\">\\r\\n <option value=\\"and\\" data-select2-id=\\"770\\">And</option>\\r\\n <option value=\\"or\\" data-select2-id=\\"3076\\" selected=\\"selected\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default select2-container--below\\" dir=\\"ltr\\" data-select2-id=\\"2042\\" style=\\"width: 58.7375px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-dy-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-dy-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Or\\">Or</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr></tbody></table></form>"], "condition_html": ["<table id=\\"multipleConditionTable\\" data-select2-id=\\"multipleConditionTable\\">\\r\\n <tbody data-select2-id=\\"1053\\"><tr>\\r\\n <th>Code</th>\\r\\n <th>Field</th>\\r\\n <th>Condition</th>\\r\\n <th>Value</th>\\r\\n <th>Logic</th>\\r\\n <th>\\r\\n Action\\r\\n <span title=\\"Reload\\" onclick=\\"$('[name=model]').change()\\">\\r\\n <ion-icon name=\\"refresh-circle\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"refresh circle\\"></ion-icon>\\r\\n </span>\\r\\n </th>\\r\\n </tr>\\r\\n <tr class=\\"dynamic-condition-row\\">\\r\\n <td class=\\"sn\\">C1</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\" data-select2-id=\\"1150\\"><option value=\\"automation_multiple_is_active\\">Is Active</option><option value=\\"automation_multiple_employee_id\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" selected=\\"selected\\" data-select2-id=\\"1152\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\">Description</option><option value=\\"automation_multiple_attachment\\">Attachment</option><option value=\\"automation_multiple_status\\">Status</option><option value=\\"automation_multiple_requested_date\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1262\\" style=\\"width: 126.225px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-pd-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-pd-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1154\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"1156\\">==</option>\\r\\n <option value=\\"!=\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1264\\" style=\\"width: 59.7125px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-5l-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-5l-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" tabindex=\\"-1\\" class=\\"select2-hidden-accessible\\" aria-hidden=\\"true\\" data-select2-id=\\"1159\\"><option value=\\"5\\" data-select2-id=\\"1161\\">Intern Casual Leave</option><option value=\\"4\\">Casual Leave</option><option value=\\"3\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1267\\" style=\\"width: 176.8px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-ly-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-ly-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Intern Casual Leave\\">Intern Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1163\\">\\r\\n <option value=\\"and\\" data-select2-id=\\"1165\\">And</option>\\r\\n <option value=\\"or\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1269\\" style=\\"width: 38.2875px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-dz-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-dz-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"And\\">And</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr>\\r\\n \\r\\n \\r\\n \\r\\n <tr class=\\"dynamic-condition-row\\" data-select2-id=\\"1172\\">\\r\\n <td class=\\"sn\\">C2</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" data-select2-id=\\"762\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\"><option value=\\"automation_multiple_is_active\\" data-select2-id=\\"764\\">Is Active</option><option value=\\"automation_multiple_employee_id\\" data-select2-id=\\"1057\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\" data-select2-id=\\"1058\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\" data-select2-id=\\"1059\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\" data-select2-id=\\"1060\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\" data-select2-id=\\"1061\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\" data-select2-id=\\"1062\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\" data-select2-id=\\"1063\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\" data-select2-id=\\"1064\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\" data-select2-id=\\"1065\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\" data-select2-id=\\"1066\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\" data-select2-id=\\"1067\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\" data-select2-id=\\"1068\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\" data-select2-id=\\"1069\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\" data-select2-id=\\"1070\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\" data-select2-id=\\"1071\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\" data-select2-id=\\"1072\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\" data-select2-id=\\"1073\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\" data-select2-id=\\"1074\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\" data-select2-id=\\"1075\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\" data-select2-id=\\"1076\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\" data-select2-id=\\"1077\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\" data-select2-id=\\"1078\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\" data-select2-id=\\"1079\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\" data-select2-id=\\"1080\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" data-select2-id=\\"1081\\" selected=\\"selected\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\" data-select2-id=\\"1082\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\" data-select2-id=\\"1083\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\" data-select2-id=\\"1084\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\" data-select2-id=\\"1085\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\" data-select2-id=\\"1086\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\" data-select2-id=\\"1087\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\" data-select2-id=\\"1088\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\" data-select2-id=\\"1089\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\" data-select2-id=\\"1090\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\" data-select2-id=\\"1091\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\" data-select2-id=\\"1092\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\" data-select2-id=\\"1093\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\" data-select2-id=\\"1094\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\" data-select2-id=\\"1095\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\" data-select2-id=\\"1096\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\" data-select2-id=\\"1097\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\" data-select2-id=\\"1098\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\" data-select2-id=\\"1099\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\" data-select2-id=\\"1100\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\" data-select2-id=\\"1101\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\" data-select2-id=\\"1102\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\" data-select2-id=\\"1103\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\" data-select2-id=\\"1104\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\" data-select2-id=\\"1105\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\" data-select2-id=\\"1106\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\" data-select2-id=\\"1107\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\" data-select2-id=\\"1108\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\" data-select2-id=\\"1109\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\" data-select2-id=\\"1110\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\" data-select2-id=\\"1111\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\" data-select2-id=\\"1112\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\" data-select2-id=\\"1113\\">Description</option><option value=\\"automation_multiple_attachment\\" data-select2-id=\\"1114\\">Attachment</option><option value=\\"automation_multiple_status\\" data-select2-id=\\"1115\\">Status</option><option value=\\"automation_multiple_requested_date\\" data-select2-id=\\"1116\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\" data-select2-id=\\"1117\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\" data-select2-id=\\"1118\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\" data-select2-id=\\"1119\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\" data-select2-id=\\"1120\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\" data-select2-id=\\"1121\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\" data-select2-id=\\"1122\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\" data-select2-id=\\"1123\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\" data-select2-id=\\"1124\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\" data-select2-id=\\"1125\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\" data-select2-id=\\"1126\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\" data-select2-id=\\"1127\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\" data-select2-id=\\"1128\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\" data-select2-id=\\"1129\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\" data-select2-id=\\"1130\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\" data-select2-id=\\"1131\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\" data-select2-id=\\"1132\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\" data-select2-id=\\"1133\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\" data-select2-id=\\"1134\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\" data-select2-id=\\"1135\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\" data-select2-id=\\"1136\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\" data-select2-id=\\"1137\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\" data-select2-id=\\"1138\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\" data-select2-id=\\"1139\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\" data-select2-id=\\"1140\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\" data-select2-id=\\"1141\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\" data-select2-id=\\"1142\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\" data-select2-id=\\"1143\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1270\\" style=\\"width: 137.262px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-n7-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-n7-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" data-select2-id=\\"765\\" tabindex=\\"-1\\" aria-hidden=\\"true\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"767\\">==</option>\\r\\n <option value=\\"!=\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1272\\" style=\\"width: 62.0625px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-2t-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-2t-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\" data-select2-id=\\"1171\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" data-select2-id=\\"1147\\" tabindex=\\"-1\\" class=\\"w-100 select2-hidden-accessible\\" aria-hidden=\\"true\\"><option value=\\"5\\" data-select2-id=\\"1149\\">Intern Casual Leave</option><option value=\\"4\\" data-select2-id=\\"1173\\">Casual Leave</option><option value=\\"3\\" data-select2-id=\\"1174\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default select2-container--below\\" dir=\\"ltr\\" data-select2-id=\\"1273\\" style=\\"width: 183.288px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-jm-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-jm-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Casual Leave\\">Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" data-select2-id=\\"768\\" tabindex=\\"-1\\" aria-hidden=\\"true\\">\\r\\n <option value=\\"and\\" data-select2-id=\\"770\\">And</option>\\r\\n <option value=\\"or\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1275\\" style=\\"width: 58.7375px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-fp-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-fp-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"And\\">And</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr></tbody></table>", "<table id=\\"multipleConditionTable\\" data-select2-id=\\"multipleConditionTable\\">\\r\\n <tbody data-select2-id=\\"1053\\"><tr>\\r\\n <th>Code</th>\\r\\n <th>Field</th>\\r\\n <th>Condition</th>\\r\\n <th>Value</th>\\r\\n <th>Logic</th>\\r\\n <th>\\r\\n Action\\r\\n <span title=\\"Reload\\" onclick=\\"$('[name=model]').change()\\">\\r\\n <ion-icon name=\\"refresh-circle\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"refresh circle\\"></ion-icon>\\r\\n </span>\\r\\n </th>\\r\\n </tr>\\r\\n <tr class=\\"dynamic-condition-row\\" data-select2-id=\\"3072\\">\\r\\n <td class=\\"sn\\">C1</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\" data-select2-id=\\"1150\\"><option value=\\"automation_multiple_is_active\\">Is Active</option><option value=\\"automation_multiple_employee_id\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" selected=\\"selected\\" data-select2-id=\\"1152\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\">Description</option><option value=\\"automation_multiple_attachment\\">Attachment</option><option value=\\"automation_multiple_status\\">Status</option><option value=\\"automation_multiple_requested_date\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"2029\\" style=\\"width: 126.225px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-7w-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-7w-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1154\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"1156\\">==</option>\\r\\n <option value=\\"!=\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"2031\\" style=\\"width: 59.7125px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-u7-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-u7-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" tabindex=\\"-1\\" class=\\"select2-hidden-accessible\\" aria-hidden=\\"true\\" data-select2-id=\\"1159\\"><option value=\\"5\\" data-select2-id=\\"1161\\">Intern Casual Leave</option><option value=\\"4\\">Casual Leave</option><option value=\\"3\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"2034\\" style=\\"width: 176.8px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-nh-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-nh-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Intern Casual Leave\\">Intern Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"3071\\">\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1163\\">\\r\\n <option value=\\"and\\" data-select2-id=\\"1165\\">And</option>\\r\\n <option value=\\"or\\" data-select2-id=\\"3073\\" selected=\\"selected\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default select2-container--below\\" dir=\\"ltr\\" data-select2-id=\\"2036\\" style=\\"width: 38.2875px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-an-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-an-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Or\\">Or</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr>\\r\\n \\r\\n \\r\\n \\r\\n <tr class=\\"dynamic-condition-row\\" data-select2-id=\\"1172\\">\\r\\n <td class=\\"sn\\">C2</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" data-select2-id=\\"762\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\"><option value=\\"automation_multiple_is_active\\" data-select2-id=\\"764\\">Is Active</option><option value=\\"automation_multiple_employee_id\\" data-select2-id=\\"1057\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\" data-select2-id=\\"1058\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\" data-select2-id=\\"1059\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\" data-select2-id=\\"1060\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\" data-select2-id=\\"1061\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\" data-select2-id=\\"1062\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\" data-select2-id=\\"1063\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\" data-select2-id=\\"1064\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\" data-select2-id=\\"1065\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\" data-select2-id=\\"1066\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\" data-select2-id=\\"1067\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\" data-select2-id=\\"1068\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\" data-select2-id=\\"1069\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\" data-select2-id=\\"1070\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\" data-select2-id=\\"1071\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\" data-select2-id=\\"1072\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\" data-select2-id=\\"1073\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\" data-select2-id=\\"1074\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\" data-select2-id=\\"1075\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\" data-select2-id=\\"1076\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\" data-select2-id=\\"1077\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\" data-select2-id=\\"1078\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\" data-select2-id=\\"1079\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\" data-select2-id=\\"1080\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" data-select2-id=\\"1081\\" selected=\\"selected\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\" data-select2-id=\\"1082\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\" data-select2-id=\\"1083\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\" data-select2-id=\\"1084\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\" data-select2-id=\\"1085\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\" data-select2-id=\\"1086\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\" data-select2-id=\\"1087\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\" data-select2-id=\\"1088\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\" data-select2-id=\\"1089\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\" data-select2-id=\\"1090\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\" data-select2-id=\\"1091\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\" data-select2-id=\\"1092\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\" data-select2-id=\\"1093\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\" data-select2-id=\\"1094\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\" data-select2-id=\\"1095\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\" data-select2-id=\\"1096\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\" data-select2-id=\\"1097\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\" data-select2-id=\\"1098\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\" data-select2-id=\\"1099\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\" data-select2-id=\\"1100\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\" data-select2-id=\\"1101\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\" data-select2-id=\\"1102\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\" data-select2-id=\\"1103\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\" data-select2-id=\\"1104\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\" data-select2-id=\\"1105\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\" data-select2-id=\\"1106\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\" data-select2-id=\\"1107\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\" data-select2-id=\\"1108\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\" data-select2-id=\\"1109\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\" data-select2-id=\\"1110\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\" data-select2-id=\\"1111\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\" data-select2-id=\\"1112\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\" data-select2-id=\\"1113\\">Description</option><option value=\\"automation_multiple_attachment\\" data-select2-id=\\"1114\\">Attachment</option><option value=\\"automation_multiple_status\\" data-select2-id=\\"1115\\">Status</option><option value=\\"automation_multiple_requested_date\\" data-select2-id=\\"1116\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\" data-select2-id=\\"1117\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\" data-select2-id=\\"1118\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\" data-select2-id=\\"1119\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\" data-select2-id=\\"1120\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\" data-select2-id=\\"1121\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\" data-select2-id=\\"1122\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\" data-select2-id=\\"1123\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\" data-select2-id=\\"1124\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\" data-select2-id=\\"1125\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\" data-select2-id=\\"1126\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\" data-select2-id=\\"1127\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\" data-select2-id=\\"1128\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\" data-select2-id=\\"1129\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\" data-select2-id=\\"1130\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\" data-select2-id=\\"1131\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\" data-select2-id=\\"1132\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\" data-select2-id=\\"1133\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\" data-select2-id=\\"1134\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\" data-select2-id=\\"1135\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\" data-select2-id=\\"1136\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\" data-select2-id=\\"1137\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\" data-select2-id=\\"1138\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\" data-select2-id=\\"1139\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\" data-select2-id=\\"1140\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\" data-select2-id=\\"1141\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\" data-select2-id=\\"1142\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\" data-select2-id=\\"1143\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"2037\\" style=\\"width: 137.262px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-e9-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-e9-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"3062\\">\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" data-select2-id=\\"765\\" tabindex=\\"-1\\" aria-hidden=\\"true\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"767\\">==</option>\\r\\n <option value=\\"!=\\" data-select2-id=\\"3069\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default select2-container--below\\" dir=\\"ltr\\" data-select2-id=\\"2039\\" style=\\"width: 62.0625px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-nj-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-nj-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\" data-select2-id=\\"1171\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" data-select2-id=\\"1147\\" tabindex=\\"-1\\" class=\\"w-100 select2-hidden-accessible\\" aria-hidden=\\"true\\"><option value=\\"5\\" data-select2-id=\\"1149\\">Intern Casual Leave</option><option value=\\"4\\" data-select2-id=\\"1173\\">Casual Leave</option><option value=\\"3\\" data-select2-id=\\"1174\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default select2-container--below\\" dir=\\"ltr\\" data-select2-id=\\"2040\\" style=\\"width: 183.288px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-bd-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-bd-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Casual Leave\\">Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"3075\\">\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" data-select2-id=\\"768\\" tabindex=\\"-1\\" aria-hidden=\\"true\\">\\r\\n <option value=\\"and\\" data-select2-id=\\"770\\">And</option>\\r\\n <option value=\\"or\\" data-select2-id=\\"3076\\" selected=\\"selected\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default select2-container--below\\" dir=\\"ltr\\" data-select2-id=\\"2042\\" style=\\"width: 58.7375px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-dy-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-dy-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Or\\">Or</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr></tbody></table>"], "condition_querystring": ["automation_multiple_condition=automation_multiple_leave_type_id&condition=%3D%3D&automation_multiple_condition=5&logic=and&automation_multiple_condition=automation_multiple_leave_type_id&condition=%3D%3D&automation_multiple_condition=4&logic=and", "automation_multiple_condition=automation_multiple_leave_type_id&condition=%3D%3D&automation_multiple_condition=5&logic=or&automation_multiple_condition=automation_multiple_leave_type_id&condition=%3D%3D&automation_multiple_condition=4&logic=or"]} 2025-02-03 10:27:19.103651+00 273 193 122.176.134.248 \N \N \N
4843 3 3 Leave Request 1 {"condition": ["<form id=\\"multipleConditionForm\\" data-select2-id=\\"multipleConditionForm\\"><table id=\\"multipleConditionTable\\" data-select2-id=\\"multipleConditionTable\\">\\r\\n <tbody data-select2-id=\\"1053\\"><tr>\\r\\n <th>Code</th>\\r\\n <th>Field</th>\\r\\n <th>Condition</th>\\r\\n <th>Value</th>\\r\\n <th>Logic</th>\\r\\n <th>\\r\\n Action\\r\\n <span title=\\"Reload\\" onclick=\\"$('[name=model]').change()\\">\\r\\n <ion-icon name=\\"refresh-circle\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"refresh circle\\"></ion-icon>\\r\\n </span>\\r\\n </th>\\r\\n </tr>\\r\\n <tr class=\\"dynamic-condition-row\\" data-select2-id=\\"3072\\">\\r\\n <td class=\\"sn\\">C1</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\" data-select2-id=\\"1150\\"><option value=\\"automation_multiple_is_active\\">Is Active</option><option value=\\"automation_multiple_employee_id\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" selected=\\"selected\\" data-select2-id=\\"1152\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\">Description</option><option value=\\"automation_multiple_attachment\\">Attachment</option><option value=\\"automation_multiple_status\\">Status</option><option value=\\"automation_multiple_requested_date\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"2029\\" style=\\"width: 126.225px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-7w-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-7w-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1154\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"1156\\">==</option>\\r\\n <option value=\\"!=\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"2031\\" style=\\"width: 59.7125px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-u7-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-u7-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" tabindex=\\"-1\\" class=\\"select2-hidden-accessible\\" aria-hidden=\\"true\\" data-select2-id=\\"1159\\"><option value=\\"5\\" data-select2-id=\\"1161\\">Intern Casual Leave</option><option value=\\"4\\">Casual Leave</option><option value=\\"3\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"2034\\" style=\\"width: 176.8px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-nh-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-nh-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Intern Casual Leave\\">Intern Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"3071\\">\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1163\\">\\r\\n <option value=\\"and\\" data-select2-id=\\"1165\\">And</option>\\r\\n <option value=\\"or\\" data-select2-id=\\"3073\\" selected=\\"selected\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default select2-container--below\\" dir=\\"ltr\\" data-select2-id=\\"2036\\" style=\\"width: 38.2875px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-an-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-an-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Or\\">Or</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr>\\r\\n \\r\\n \\r\\n \\r\\n <tr class=\\"dynamic-condition-row\\" data-select2-id=\\"1172\\">\\r\\n <td class=\\"sn\\">C2</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" data-select2-id=\\"762\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\"><option value=\\"automation_multiple_is_active\\" data-select2-id=\\"764\\">Is Active</option><option value=\\"automation_multiple_employee_id\\" data-select2-id=\\"1057\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\" data-select2-id=\\"1058\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\" data-select2-id=\\"1059\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\" data-select2-id=\\"1060\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\" data-select2-id=\\"1061\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\" data-select2-id=\\"1062\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\" data-select2-id=\\"1063\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\" data-select2-id=\\"1064\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\" data-select2-id=\\"1065\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\" data-select2-id=\\"1066\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\" data-select2-id=\\"1067\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\" data-select2-id=\\"1068\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\" data-select2-id=\\"1069\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\" data-select2-id=\\"1070\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\" data-select2-id=\\"1071\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\" data-select2-id=\\"1072\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\" data-select2-id=\\"1073\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\" data-select2-id=\\"1074\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\" data-select2-id=\\"1075\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\" data-select2-id=\\"1076\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\" data-select2-id=\\"1077\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\" data-select2-id=\\"1078\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\" data-select2-id=\\"1079\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\" data-select2-id=\\"1080\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" data-select2-id=\\"1081\\" selected=\\"selected\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\" data-select2-id=\\"1082\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\" data-select2-id=\\"1083\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\" data-select2-id=\\"1084\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\" data-select2-id=\\"1085\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\" data-select2-id=\\"1086\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\" data-select2-id=\\"1087\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\" data-select2-id=\\"1088\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\" data-select2-id=\\"1089\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\" data-select2-id=\\"1090\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\" data-select2-id=\\"1091\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\" data-select2-id=\\"1092\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\" data-select2-id=\\"1093\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\" data-select2-id=\\"1094\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\" data-select2-id=\\"1095\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\" data-select2-id=\\"1096\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\" data-select2-id=\\"1097\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\" data-select2-id=\\"1098\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\" data-select2-id=\\"1099\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\" data-select2-id=\\"1100\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\" data-select2-id=\\"1101\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\" data-select2-id=\\"1102\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\" data-select2-id=\\"1103\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\" data-select2-id=\\"1104\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\" data-select2-id=\\"1105\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\" data-select2-id=\\"1106\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\" data-select2-id=\\"1107\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\" data-select2-id=\\"1108\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\" data-select2-id=\\"1109\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\" data-select2-id=\\"1110\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\" data-select2-id=\\"1111\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\" data-select2-id=\\"1112\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\" data-select2-id=\\"1113\\">Description</option><option value=\\"automation_multiple_attachment\\" data-select2-id=\\"1114\\">Attachment</option><option value=\\"automation_multiple_status\\" data-select2-id=\\"1115\\">Status</option><option value=\\"automation_multiple_requested_date\\" data-select2-id=\\"1116\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\" data-select2-id=\\"1117\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\" data-select2-id=\\"1118\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\" data-select2-id=\\"1119\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\" data-select2-id=\\"1120\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\" data-select2-id=\\"1121\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\" data-select2-id=\\"1122\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\" data-select2-id=\\"1123\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\" data-select2-id=\\"1124\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\" data-select2-id=\\"1125\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\" data-select2-id=\\"1126\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\" data-select2-id=\\"1127\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\" data-select2-id=\\"1128\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\" data-select2-id=\\"1129\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\" data-select2-id=\\"1130\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\" data-select2-id=\\"1131\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\" data-select2-id=\\"1132\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\" data-select2-id=\\"1133\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\" data-select2-id=\\"1134\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\" data-select2-id=\\"1135\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\" data-select2-id=\\"1136\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\" data-select2-id=\\"1137\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\" data-select2-id=\\"1138\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\" data-select2-id=\\"1139\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\" data-select2-id=\\"1140\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\" data-select2-id=\\"1141\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\" data-select2-id=\\"1142\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\" data-select2-id=\\"1143\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"2037\\" style=\\"width: 137.262px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-e9-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-e9-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"3062\\">\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" data-select2-id=\\"765\\" tabindex=\\"-1\\" aria-hidden=\\"true\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"767\\">==</option>\\r\\n <option value=\\"!=\\" data-select2-id=\\"3069\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default select2-container--below\\" dir=\\"ltr\\" data-select2-id=\\"2039\\" style=\\"width: 62.0625px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-nj-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-nj-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\" data-select2-id=\\"1171\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" data-select2-id=\\"1147\\" tabindex=\\"-1\\" class=\\"w-100 select2-hidden-accessible\\" aria-hidden=\\"true\\"><option value=\\"5\\" data-select2-id=\\"1149\\">Intern Casual Leave</option><option value=\\"4\\" data-select2-id=\\"1173\\">Casual Leave</option><option value=\\"3\\" data-select2-id=\\"1174\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default select2-container--below select2-container--focus\\" dir=\\"ltr\\" data-select2-id=\\"2040\\" style=\\"width: 183.288px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-bd-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-bd-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Casual Leave\\">Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"3075\\">\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" data-select2-id=\\"768\\" tabindex=\\"-1\\" aria-hidden=\\"true\\">\\r\\n <option value=\\"and\\" data-select2-id=\\"770\\">And</option>\\r\\n <option value=\\"or\\" data-select2-id=\\"3076\\" selected=\\"selected\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default select2-container--below\\" dir=\\"ltr\\" data-select2-id=\\"2042\\" style=\\"width: 58.7375px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-dy-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-dy-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Or\\">Or</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr></tbody></table></form>", "<form id=\\"multipleConditionForm\\" data-select2-id=\\"multipleConditionForm\\"><table id=\\"multipleConditionTable\\" data-select2-id=\\"multipleConditionTable\\">\\r\\n <tbody data-select2-id=\\"1053\\"><tr>\\r\\n <th>Code</th>\\r\\n <th>Field</th>\\r\\n <th>Condition</th>\\r\\n <th>Value</th>\\r\\n <th>Logic</th>\\r\\n <th>\\r\\n Action\\r\\n <span title=\\"Reload\\" onclick=\\"$('[name=model]').change()\\">\\r\\n <ion-icon name=\\"refresh-circle\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"refresh circle\\"></ion-icon>\\r\\n </span>\\r\\n </th>\\r\\n </tr>\\r\\n <tr class=\\"dynamic-condition-row\\" data-select2-id=\\"3072\\">\\r\\n <td class=\\"sn\\">C1</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\" data-select2-id=\\"1150\\"><option value=\\"automation_multiple_is_active\\">Is Active</option><option value=\\"automation_multiple_employee_id\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" selected=\\"selected\\" data-select2-id=\\"1152\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\">Description</option><option value=\\"automation_multiple_attachment\\">Attachment</option><option value=\\"automation_multiple_status\\">Status</option><option value=\\"automation_multiple_requested_date\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"3165\\" style=\\"width: 126.225px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-j1-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-j1-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1154\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"1156\\">==</option>\\r\\n <option value=\\"!=\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"3167\\" style=\\"width: 59.7125px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-vx-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-vx-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" tabindex=\\"-1\\" class=\\"select2-hidden-accessible\\" aria-hidden=\\"true\\" data-select2-id=\\"1159\\"><option value=\\"5\\" data-select2-id=\\"1161\\">Intern Casual Leave</option><option value=\\"4\\">Casual Leave</option><option value=\\"3\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"3170\\" style=\\"width: 176.8px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-zk-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-zk-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Intern Casual Leave\\">Intern Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"3071\\">\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1163\\">\\r\\n <option value=\\"and\\" data-select2-id=\\"1165\\" selected=\\"selected\\">And</option>\\r\\n <option value=\\"or\\" data-select2-id=\\"3073\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default select2-container--below\\" dir=\\"ltr\\" data-select2-id=\\"3171\\" style=\\"width: 38.2875px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-0w-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-0w-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"And\\">And</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr>\\r\\n \\r\\n \\r\\n \\r\\n <tr class=\\"dynamic-condition-row\\" data-select2-id=\\"1172\\">\\r\\n <td class=\\"sn\\">C2</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" data-select2-id=\\"762\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\"><option value=\\"automation_multiple_is_active\\" data-select2-id=\\"764\\">Is Active</option><option value=\\"automation_multiple_employee_id\\" data-select2-id=\\"1057\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\" data-select2-id=\\"1058\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\" data-select2-id=\\"1059\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\" data-select2-id=\\"1060\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\" data-select2-id=\\"1061\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\" data-select2-id=\\"1062\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\" data-select2-id=\\"1063\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\" data-select2-id=\\"1064\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\" data-select2-id=\\"1065\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\" data-select2-id=\\"1066\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\" data-select2-id=\\"1067\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\" data-select2-id=\\"1068\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\" data-select2-id=\\"1069\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\" data-select2-id=\\"1070\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\" data-select2-id=\\"1071\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\" data-select2-id=\\"1072\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\" data-select2-id=\\"1073\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\" data-select2-id=\\"1074\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\" data-select2-id=\\"1075\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\" data-select2-id=\\"1076\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\" data-select2-id=\\"1077\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\" data-select2-id=\\"1078\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\" data-select2-id=\\"1079\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\" data-select2-id=\\"1080\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" data-select2-id=\\"1081\\" selected=\\"selected\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\" data-select2-id=\\"1082\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\" data-select2-id=\\"1083\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\" data-select2-id=\\"1084\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\" data-select2-id=\\"1085\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\" data-select2-id=\\"1086\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\" data-select2-id=\\"1087\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\" data-select2-id=\\"1088\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\" data-select2-id=\\"1089\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\" data-select2-id=\\"1090\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\" data-select2-id=\\"1091\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\" data-select2-id=\\"1092\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\" data-select2-id=\\"1093\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\" data-select2-id=\\"1094\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\" data-select2-id=\\"1095\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\" data-select2-id=\\"1096\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\" data-select2-id=\\"1097\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\" data-select2-id=\\"1098\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\" data-select2-id=\\"1099\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\" data-select2-id=\\"1100\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\" data-select2-id=\\"1101\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\" data-select2-id=\\"1102\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\" data-select2-id=\\"1103\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\" data-select2-id=\\"1104\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\" data-select2-id=\\"1105\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\" data-select2-id=\\"1106\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\" data-select2-id=\\"1107\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\" data-select2-id=\\"1108\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\" data-select2-id=\\"1109\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\" data-select2-id=\\"1110\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\" data-select2-id=\\"1111\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\" data-select2-id=\\"1112\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\" data-select2-id=\\"1113\\">Description</option><option value=\\"automation_multiple_attachment\\" data-select2-id=\\"1114\\">Attachment</option><option value=\\"automation_multiple_status\\" data-select2-id=\\"1115\\">Status</option><option value=\\"automation_multiple_requested_date\\" data-select2-id=\\"1116\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\" data-select2-id=\\"1117\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\" data-select2-id=\\"1118\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\" data-select2-id=\\"1119\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\" data-select2-id=\\"1120\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\" data-select2-id=\\"1121\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\" data-select2-id=\\"1122\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\" data-select2-id=\\"1123\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\" data-select2-id=\\"1124\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\" data-select2-id=\\"1125\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\" data-select2-id=\\"1126\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\" data-select2-id=\\"1127\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\" data-select2-id=\\"1128\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\" data-select2-id=\\"1129\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\" data-select2-id=\\"1130\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\" data-select2-id=\\"1131\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\" data-select2-id=\\"1132\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\" data-select2-id=\\"1133\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\" data-select2-id=\\"1134\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\" data-select2-id=\\"1135\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\" data-select2-id=\\"1136\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\" data-select2-id=\\"1137\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\" data-select2-id=\\"1138\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\" data-select2-id=\\"1139\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\" data-select2-id=\\"1140\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\" data-select2-id=\\"1141\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\" data-select2-id=\\"1142\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\" data-select2-id=\\"1143\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"3172\\" style=\\"width: 143.688px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-2b-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-2b-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"3062\\">\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" data-select2-id=\\"765\\" tabindex=\\"-1\\" aria-hidden=\\"true\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"767\\">==</option>\\r\\n <option value=\\"!=\\" data-select2-id=\\"3069\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"3173\\" style=\\"width: 62.8875px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-fb-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-fb-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\" data-select2-id=\\"1171\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" data-select2-id=\\"1147\\" tabindex=\\"-1\\" class=\\"w-100 select2-hidden-accessible\\" aria-hidden=\\"true\\"><option value=\\"5\\" data-select2-id=\\"1149\\">Intern Casual Leave</option><option value=\\"4\\" data-select2-id=\\"1173\\">Casual Leave</option><option value=\\"3\\" data-select2-id=\\"1174\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default select2-container--below select2-container--focus\\" dir=\\"ltr\\" data-select2-id=\\"3174\\" style=\\"width: 185.587px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-s7-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-s7-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Casual Leave\\">Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"3075\\">\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" data-select2-id=\\"768\\" tabindex=\\"-1\\" aria-hidden=\\"true\\">\\r\\n <option value=\\"and\\" data-select2-id=\\"770\\">And</option>\\r\\n <option value=\\"or\\" data-select2-id=\\"3076\\" selected=\\"selected\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default select2-container--below\\" dir=\\"ltr\\" data-select2-id=\\"3175\\" style=\\"width: 52.875px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-c0-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-c0-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Or\\">Or</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr></tbody></table></form>"], "condition_html": ["<table id=\\"multipleConditionTable\\" data-select2-id=\\"multipleConditionTable\\">\\r\\n <tbody data-select2-id=\\"1053\\"><tr>\\r\\n <th>Code</th>\\r\\n <th>Field</th>\\r\\n <th>Condition</th>\\r\\n <th>Value</th>\\r\\n <th>Logic</th>\\r\\n <th>\\r\\n Action\\r\\n <span title=\\"Reload\\" onclick=\\"$('[name=model]').change()\\">\\r\\n <ion-icon name=\\"refresh-circle\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"refresh circle\\"></ion-icon>\\r\\n </span>\\r\\n </th>\\r\\n </tr>\\r\\n <tr class=\\"dynamic-condition-row\\" data-select2-id=\\"3072\\">\\r\\n <td class=\\"sn\\">C1</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\" data-select2-id=\\"1150\\"><option value=\\"automation_multiple_is_active\\">Is Active</option><option value=\\"automation_multiple_employee_id\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" selected=\\"selected\\" data-select2-id=\\"1152\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\">Description</option><option value=\\"automation_multiple_attachment\\">Attachment</option><option value=\\"automation_multiple_status\\">Status</option><option value=\\"automation_multiple_requested_date\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"2029\\" style=\\"width: 126.225px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-7w-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-7w-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1154\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"1156\\">==</option>\\r\\n <option value=\\"!=\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"2031\\" style=\\"width: 59.7125px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-u7-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-u7-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" tabindex=\\"-1\\" class=\\"select2-hidden-accessible\\" aria-hidden=\\"true\\" data-select2-id=\\"1159\\"><option value=\\"5\\" data-select2-id=\\"1161\\">Intern Casual Leave</option><option value=\\"4\\">Casual Leave</option><option value=\\"3\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"2034\\" style=\\"width: 176.8px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-nh-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-nh-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Intern Casual Leave\\">Intern Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"3071\\">\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1163\\">\\r\\n <option value=\\"and\\" data-select2-id=\\"1165\\">And</option>\\r\\n <option value=\\"or\\" data-select2-id=\\"3073\\" selected=\\"selected\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default select2-container--below\\" dir=\\"ltr\\" data-select2-id=\\"2036\\" style=\\"width: 38.2875px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-an-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-an-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Or\\">Or</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr>\\r\\n \\r\\n \\r\\n \\r\\n <tr class=\\"dynamic-condition-row\\" data-select2-id=\\"1172\\">\\r\\n <td class=\\"sn\\">C2</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" data-select2-id=\\"762\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\"><option value=\\"automation_multiple_is_active\\" data-select2-id=\\"764\\">Is Active</option><option value=\\"automation_multiple_employee_id\\" data-select2-id=\\"1057\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\" data-select2-id=\\"1058\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\" data-select2-id=\\"1059\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\" data-select2-id=\\"1060\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\" data-select2-id=\\"1061\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\" data-select2-id=\\"1062\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\" data-select2-id=\\"1063\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\" data-select2-id=\\"1064\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\" data-select2-id=\\"1065\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\" data-select2-id=\\"1066\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\" data-select2-id=\\"1067\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\" data-select2-id=\\"1068\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\" data-select2-id=\\"1069\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\" data-select2-id=\\"1070\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\" data-select2-id=\\"1071\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\" data-select2-id=\\"1072\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\" data-select2-id=\\"1073\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\" data-select2-id=\\"1074\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\" data-select2-id=\\"1075\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\" data-select2-id=\\"1076\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\" data-select2-id=\\"1077\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\" data-select2-id=\\"1078\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\" data-select2-id=\\"1079\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\" data-select2-id=\\"1080\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" data-select2-id=\\"1081\\" selected=\\"selected\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\" data-select2-id=\\"1082\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\" data-select2-id=\\"1083\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\" data-select2-id=\\"1084\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\" data-select2-id=\\"1085\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\" data-select2-id=\\"1086\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\" data-select2-id=\\"1087\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\" data-select2-id=\\"1088\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\" data-select2-id=\\"1089\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\" data-select2-id=\\"1090\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\" data-select2-id=\\"1091\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\" data-select2-id=\\"1092\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\" data-select2-id=\\"1093\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\" data-select2-id=\\"1094\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\" data-select2-id=\\"1095\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\" data-select2-id=\\"1096\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\" data-select2-id=\\"1097\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\" data-select2-id=\\"1098\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\" data-select2-id=\\"1099\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\" data-select2-id=\\"1100\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\" data-select2-id=\\"1101\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\" data-select2-id=\\"1102\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\" data-select2-id=\\"1103\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\" data-select2-id=\\"1104\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\" data-select2-id=\\"1105\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\" data-select2-id=\\"1106\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\" data-select2-id=\\"1107\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\" data-select2-id=\\"1108\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\" data-select2-id=\\"1109\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\" data-select2-id=\\"1110\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\" data-select2-id=\\"1111\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\" data-select2-id=\\"1112\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\" data-select2-id=\\"1113\\">Description</option><option value=\\"automation_multiple_attachment\\" data-select2-id=\\"1114\\">Attachment</option><option value=\\"automation_multiple_status\\" data-select2-id=\\"1115\\">Status</option><option value=\\"automation_multiple_requested_date\\" data-select2-id=\\"1116\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\" data-select2-id=\\"1117\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\" data-select2-id=\\"1118\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\" data-select2-id=\\"1119\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\" data-select2-id=\\"1120\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\" data-select2-id=\\"1121\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\" data-select2-id=\\"1122\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\" data-select2-id=\\"1123\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\" data-select2-id=\\"1124\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\" data-select2-id=\\"1125\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\" data-select2-id=\\"1126\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\" data-select2-id=\\"1127\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\" data-select2-id=\\"1128\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\" data-select2-id=\\"1129\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\" data-select2-id=\\"1130\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\" data-select2-id=\\"1131\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\" data-select2-id=\\"1132\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\" data-select2-id=\\"1133\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\" data-select2-id=\\"1134\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\" data-select2-id=\\"1135\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\" data-select2-id=\\"1136\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\" data-select2-id=\\"1137\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\" data-select2-id=\\"1138\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\" data-select2-id=\\"1139\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\" data-select2-id=\\"1140\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\" data-select2-id=\\"1141\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\" data-select2-id=\\"1142\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\" data-select2-id=\\"1143\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"2037\\" style=\\"width: 137.262px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-e9-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-e9-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"3062\\">\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" data-select2-id=\\"765\\" tabindex=\\"-1\\" aria-hidden=\\"true\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"767\\">==</option>\\r\\n <option value=\\"!=\\" data-select2-id=\\"3069\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default select2-container--below\\" dir=\\"ltr\\" data-select2-id=\\"2039\\" style=\\"width: 62.0625px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-nj-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-nj-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\" data-select2-id=\\"1171\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" data-select2-id=\\"1147\\" tabindex=\\"-1\\" class=\\"w-100 select2-hidden-accessible\\" aria-hidden=\\"true\\"><option value=\\"5\\" data-select2-id=\\"1149\\">Intern Casual Leave</option><option value=\\"4\\" data-select2-id=\\"1173\\">Casual Leave</option><option value=\\"3\\" data-select2-id=\\"1174\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default select2-container--below\\" dir=\\"ltr\\" data-select2-id=\\"2040\\" style=\\"width: 183.288px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-bd-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-bd-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Casual Leave\\">Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"3075\\">\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" data-select2-id=\\"768\\" tabindex=\\"-1\\" aria-hidden=\\"true\\">\\r\\n <option value=\\"and\\" data-select2-id=\\"770\\">And</option>\\r\\n <option value=\\"or\\" data-select2-id=\\"3076\\" selected=\\"selected\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default select2-container--below\\" dir=\\"ltr\\" data-select2-id=\\"2042\\" style=\\"width: 58.7375px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-dy-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-dy-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Or\\">Or</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr></tbody></table>", "<table id=\\"multipleConditionTable\\" data-select2-id=\\"multipleConditionTable\\">\\r\\n <tbody data-select2-id=\\"1053\\"><tr>\\r\\n <th>Code</th>\\r\\n <th>Field</th>\\r\\n <th>Condition</th>\\r\\n <th>Value</th>\\r\\n <th>Logic</th>\\r\\n <th>\\r\\n Action\\r\\n <span title=\\"Reload\\" onclick=\\"$('[name=model]').change()\\">\\r\\n <ion-icon name=\\"refresh-circle\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"refresh circle\\"></ion-icon>\\r\\n </span>\\r\\n </th>\\r\\n </tr>\\r\\n <tr class=\\"dynamic-condition-row\\" data-select2-id=\\"3072\\">\\r\\n <td class=\\"sn\\">C1</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\" data-select2-id=\\"1150\\"><option value=\\"automation_multiple_is_active\\">Is Active</option><option value=\\"automation_multiple_employee_id\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" selected=\\"selected\\" data-select2-id=\\"1152\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\">Description</option><option value=\\"automation_multiple_attachment\\">Attachment</option><option value=\\"automation_multiple_status\\">Status</option><option value=\\"automation_multiple_requested_date\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"3165\\" style=\\"width: 126.225px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-j1-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-j1-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1154\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"1156\\">==</option>\\r\\n <option value=\\"!=\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"3167\\" style=\\"width: 59.7125px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-vx-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-vx-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" tabindex=\\"-1\\" class=\\"select2-hidden-accessible\\" aria-hidden=\\"true\\" data-select2-id=\\"1159\\"><option value=\\"5\\" data-select2-id=\\"1161\\">Intern Casual Leave</option><option value=\\"4\\">Casual Leave</option><option value=\\"3\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"3170\\" style=\\"width: 176.8px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-zk-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-zk-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Intern Casual Leave\\">Intern Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"3071\\">\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1163\\">\\r\\n <option value=\\"and\\" data-select2-id=\\"1165\\" selected=\\"selected\\">And</option>\\r\\n <option value=\\"or\\" data-select2-id=\\"3073\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default select2-container--below\\" dir=\\"ltr\\" data-select2-id=\\"3171\\" style=\\"width: 38.2875px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-0w-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-0w-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"And\\">And</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr>\\r\\n \\r\\n \\r\\n \\r\\n <tr class=\\"dynamic-condition-row\\" data-select2-id=\\"1172\\">\\r\\n <td class=\\"sn\\">C2</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" data-select2-id=\\"762\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\"><option value=\\"automation_multiple_is_active\\" data-select2-id=\\"764\\">Is Active</option><option value=\\"automation_multiple_employee_id\\" data-select2-id=\\"1057\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\" data-select2-id=\\"1058\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\" data-select2-id=\\"1059\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\" data-select2-id=\\"1060\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\" data-select2-id=\\"1061\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\" data-select2-id=\\"1062\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\" data-select2-id=\\"1063\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\" data-select2-id=\\"1064\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\" data-select2-id=\\"1065\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\" data-select2-id=\\"1066\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\" data-select2-id=\\"1067\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\" data-select2-id=\\"1068\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\" data-select2-id=\\"1069\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\" data-select2-id=\\"1070\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\" data-select2-id=\\"1071\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\" data-select2-id=\\"1072\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\" data-select2-id=\\"1073\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\" data-select2-id=\\"1074\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\" data-select2-id=\\"1075\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\" data-select2-id=\\"1076\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\" data-select2-id=\\"1077\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\" data-select2-id=\\"1078\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\" data-select2-id=\\"1079\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\" data-select2-id=\\"1080\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" data-select2-id=\\"1081\\" selected=\\"selected\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\" data-select2-id=\\"1082\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\" data-select2-id=\\"1083\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\" data-select2-id=\\"1084\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\" data-select2-id=\\"1085\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\" data-select2-id=\\"1086\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\" data-select2-id=\\"1087\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\" data-select2-id=\\"1088\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\" data-select2-id=\\"1089\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\" data-select2-id=\\"1090\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\" data-select2-id=\\"1091\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\" data-select2-id=\\"1092\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\" data-select2-id=\\"1093\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\" data-select2-id=\\"1094\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\" data-select2-id=\\"1095\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\" data-select2-id=\\"1096\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\" data-select2-id=\\"1097\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\" data-select2-id=\\"1098\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\" data-select2-id=\\"1099\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\" data-select2-id=\\"1100\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\" data-select2-id=\\"1101\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\" data-select2-id=\\"1102\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\" data-select2-id=\\"1103\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\" data-select2-id=\\"1104\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\" data-select2-id=\\"1105\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\" data-select2-id=\\"1106\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\" data-select2-id=\\"1107\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\" data-select2-id=\\"1108\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\" data-select2-id=\\"1109\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\" data-select2-id=\\"1110\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\" data-select2-id=\\"1111\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\" data-select2-id=\\"1112\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\" data-select2-id=\\"1113\\">Description</option><option value=\\"automation_multiple_attachment\\" data-select2-id=\\"1114\\">Attachment</option><option value=\\"automation_multiple_status\\" data-select2-id=\\"1115\\">Status</option><option value=\\"automation_multiple_requested_date\\" data-select2-id=\\"1116\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\" data-select2-id=\\"1117\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\" data-select2-id=\\"1118\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\" data-select2-id=\\"1119\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\" data-select2-id=\\"1120\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\" data-select2-id=\\"1121\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\" data-select2-id=\\"1122\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\" data-select2-id=\\"1123\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\" data-select2-id=\\"1124\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\" data-select2-id=\\"1125\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\" data-select2-id=\\"1126\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\" data-select2-id=\\"1127\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\" data-select2-id=\\"1128\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\" data-select2-id=\\"1129\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\" data-select2-id=\\"1130\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\" data-select2-id=\\"1131\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\" data-select2-id=\\"1132\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\" data-select2-id=\\"1133\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\" data-select2-id=\\"1134\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\" data-select2-id=\\"1135\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\" data-select2-id=\\"1136\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\" data-select2-id=\\"1137\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\" data-select2-id=\\"1138\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\" data-select2-id=\\"1139\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\" data-select2-id=\\"1140\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\" data-select2-id=\\"1141\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\" data-select2-id=\\"1142\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\" data-select2-id=\\"1143\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"3172\\" style=\\"width: 143.688px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-2b-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-2b-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"3062\\">\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" data-select2-id=\\"765\\" tabindex=\\"-1\\" aria-hidden=\\"true\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"767\\">==</option>\\r\\n <option value=\\"!=\\" data-select2-id=\\"3069\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"3173\\" style=\\"width: 62.8875px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-fb-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-fb-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\" data-select2-id=\\"1171\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" data-select2-id=\\"1147\\" tabindex=\\"-1\\" class=\\"w-100 select2-hidden-accessible\\" aria-hidden=\\"true\\"><option value=\\"5\\" data-select2-id=\\"1149\\">Intern Casual Leave</option><option value=\\"4\\" data-select2-id=\\"1173\\">Casual Leave</option><option value=\\"3\\" data-select2-id=\\"1174\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default select2-container--above\\" dir=\\"ltr\\" data-select2-id=\\"3174\\" style=\\"width: 185.587px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-s7-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-s7-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Casual Leave\\">Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"3075\\">\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" data-select2-id=\\"768\\" tabindex=\\"-1\\" aria-hidden=\\"true\\">\\r\\n <option value=\\"and\\" data-select2-id=\\"770\\">And</option>\\r\\n <option value=\\"or\\" data-select2-id=\\"3076\\" selected=\\"selected\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default select2-container--below\\" dir=\\"ltr\\" data-select2-id=\\"3175\\" style=\\"width: 52.875px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-c0-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-c0-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Or\\">Or</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr></tbody></table>"], "condition_querystring": ["automation_multiple_condition=automation_multiple_leave_type_id&condition=%3D%3D&automation_multiple_condition=5&logic=or&automation_multiple_condition=automation_multiple_leave_type_id&condition=%3D%3D&automation_multiple_condition=4&logic=or", "automation_multiple_condition=automation_multiple_leave_type_id&condition=%3D%3D&automation_multiple_condition=5&logic=and&automation_multiple_condition=automation_multiple_leave_type_id&condition=%3D%3D&automation_multiple_condition=4&logic=or"]} 2025-02-03 10:27:55.969282+00 273 193 122.176.134.248 \N \N \N
4844 ds90vhik2aj88mqz0nky3dmrqciuiasp \N ds90vhik2aj88mqz0nky3dmrqciuiasp 2 {"expire_date": ["2025-02-17 10:28:08.642343", "None"], "session_key": ["ds90vhik2aj88mqz0nky3dmrqciuiasp", "None"], "session_data": [".eJydU02P40QQ_SvIBy7UJF3Vdn-MtEILWnEBjlzQKnLsnonBsYPtDKxG8995b4jE7gokxMGxu6vq1XuvKs_VcSlt3y3X83Gt7n9-rq7LWN1Xp227rPf7fVkuu76c26nfSnfazcvjvpJqas8FSd_9iO-H-Tr11f22XMuL_IfysbRP5SOQ1_P_xnn9vWvHce7abZinu6X8di3rdvc0lN8_7_JveZ91fy_Vob1up8N1LcthwHVl0Vef3B7b7tfCiqr_pZ0e5103T9syHHdM2d2i6-6HuS_jN7fcTwBO7XpCddNoPKpzluvsXYxNdJ22x77XB-_6Y9uHowtB-9yHVFsIIT88OHPh2KRindG4tYyl20p_6ObzpZ0-ABU6_yFwGKZ1a6cOfjxXfye_Hccvvr2dpBog5CPjr8Nd-9Ru7bJC4XnfXob917T0Daq-ulV9SbmPCx18s2BE8xk4W_lju4H_1WooK-Fh2XQdxxdkDNvI0Xz_7u1P7ziCYdzKArrlfBnnD6VwH80aaZKYmWjjJKgoHnNJ1JnEJLUXjU5iLbkWH8Q0C86GezMnqGlQ09S4wdME1DvRHMVHFDaAaXCNkAZJPEZk4vE1MoGB5jXgTCUjEVF1aGIo8IgG8MjAVNw35JVFPdLVJESpkwQDBB4FHIoyuBjkRGBkXHvk4w50NKkAzdgFsiwhgnNopEYeOJvjGwwj3qzJQIYUaNaIb4cO0IDdwB3OEZiQrA2-X-nBKLBRQBgtVFBXwBkawWSFH6BgUSUhAj8to6lHRfKCYvOIJgDhnYFF42kYCFNFTe8IRcFZUKMUmOmskwQYg6sJx0C_cM6cIYHgCcjyqAx7CTAKvTkdvhs0NRqA-SMfo4AdCJqCVU0HUWYgySGzrhawYRvMgD56esqpUCYRYBO1BliT8A2HE5w0iuSusQTLBScwQ8AgCNORGTgUFIEyt4lGYcaYr3KgRnPgOCajKIYma7hcdBVWsGtmZ-4NbQ3Co3I9seQ40TovUGRcCMcA6JABVcJGVfoVBfmevYkCsVxXTphbRIa4orpayCpyOJwktzhJRHdOo-aqeEG0oYNeOBqI0cQxsRWu8Tcz7hf_NixKpEMzQYNOwV-lz9xwz9XkAqMB_lMkw15U8bqaDHGvkUbJzr1_-RNqqaZ6:1tetgW:3UXkd9_dUKVdE4hOnnkMmkm58w_p-vrOBKmQqsU2ycA", "None"]} 2025-02-03 10:28:21.270067+00 273 6 122.176.134.248 \N \N \N
4847 v4v9yzjxm74m2frur78fxz6ge7mph04j \N v4v9yzjxm74m2frur78fxz6ge7mph04j 2 {"expire_date": ["2025-02-17 10:28:22.128914", "None"], "session_key": ["v4v9yzjxm74m2frur78fxz6ge7mph04j", "None"], "session_data": [".eJyrVkoqSk1MSS4qzU0qVrKKrlYqLcpRslLKKCkpKLbS108tKtBLSc1NzEspSU3O0MsvStdX0lHKS8xNBSpy9wOy0_JL81KUrEqKSlNrdYjQnpOfnpmHZAiYj2ZObC0Aisk0Aw:1tetgk:nSKIPUjYYXpC6JvVnb7_O-mz0WciXy6EMa96gvcYAyA", "None"]} 2025-02-03 10:28:32.456552+00 \N 6 122.176.134.248 \N \N \N
4848 515 515 eshu.arora@growthnatives.com 1 {"last_login": ["2025-02-03 09:56:54.187133", "2025-02-03 10:28:32.458068"]} 2025-02-03 10:28:32.459157+00 \N 4 122.176.134.248 \N \N \N
4849 69 69 Admin GN Your work details has been updated. 11 minutes ago 1 {"unread": ["True", "False"]} 2025-02-03 10:29:25.85661+00 515 7 122.176.134.248 \N \N \N
4850 296 296 Sahil Koundal (GN0576) - Software Developer Intern - (Development - GN) 1 {"reporting_manager_id": ["294", "279"]} 2025-02-03 10:30:36.366605+00 273 55 122.176.134.248 \N \N \N
4851 2098 2098 Sahil Koundal (GN0576) - Software Developer Intern - (Development - GN) as of 2025-02-03 10:30:36.373273+00:00 0 {"id": ["None", "296"], "email": ["None", "sahil.koundal@growthnatives.co"], "location": ["None", "Mohali"], "shift_id": ["None", "2"], "experience": ["None", "0.0"], "history_id": ["None", "2098"], "employee_id": ["None", "297"], "salary_hour": ["None", "0"], "basic_salary": ["None", "0"], "date_joining": ["None", "2024-10-01"], "history_date": ["None", "2025-02-03 10:30:36.373273"], "history_type": ["None", "~"], "history_user": ["None", "273"], "work_type_id": ["None", "4"], "department_id": ["None", "18"], "job_position_id": ["None", "192"], "employee_type_id": ["None", "5"], "history_relation": ["None", "296"], "history_highlight": ["None", "False"], "reporting_manager_id": ["None", "279"]} 2025-02-03 10:30:36.382168+00 273 59 122.176.134.248 \N \N \N
4852 81 81 Admin GN Your work details has been updated. 0 minutes ago 0 {"id": ["None", "81"], "data": ["null", "{\\"icon\\": \\"briefcase\\", \\"redirect\\": \\"/employee/employee-profile/\\", \\"verb_ar\\": \\"\\\\u062a\\\\u0645 \\\\u062a\\\\u062d\\\\u062f\\\\u064a\\\\u062b \\\\u062a\\\\u0641\\\\u0627\\\\u0635\\\\u064a\\\\u0644 \\\\u0639\\\\u0645\\\\u0644\\\\u0643.\\", \\"verb_de\\": \\"Ihre Arbeitsdetails wurden aktualisiert.\\", \\"verb_es\\": \\"Se han actualizado los detalles de su trabajo.\\", \\"verb_fr\\": \\"Vos informations professionnelles ont \\\\u00e9t\\\\u00e9 mises \\\\u00e0 jour.\\"}"], "verb": ["None", "Your work details has been updated."], "actor": ["None", "Admin GN "], "level": ["None", "info"], "public": ["None", "True"], "unread": ["None", "True"], "deleted": ["None", "False"], "emailed": ["None", "False"], "verb_ar": ["None", "تم تحديث تفاصيل عملك."], "verb_de": ["None", "Ihre Arbeitsdetails wurden aktualisiert."], "verb_en": ["None", ""], "verb_es": ["None", "Se han actualizado los detalles de su trabajo."], "verb_fr": ["None", "Vos informations professionnelles ont été mises à jour."], "recipient": ["None", "535"], "timestamp": ["None", "2025-02-03 10:30:36.391568"], "actor_object_id": ["None", "36"], "actor_content_type": ["None", "53"]} 2025-02-03 10:30:36.396931+00 273 7 122.176.134.248 \N \N \N
4853 15 15 Sahil Koundal (GN0576) | Intern Casual Leave | requested as of 2025-02-03 10:31:19.460502+00:00 0 {"id": ["None", "8"], "status": ["None", "requested"], "end_date": ["None", "2025-02-03"], "is_active": ["None", "True"], "attachment": ["None", ""], "created_at": ["None", "2025-02-03 10:31:19.456989"], "created_by": ["None", "297"], "history_id": ["None", "15"], "start_date": ["None", "2025-02-03"], "description": ["None", "Testing"], "employee_id": ["None", "297"], "modified_by": ["None", "535"], "history_date": ["None", "2025-02-03 10:31:19.460502"], "history_type": ["None", "+"], "history_user": ["None", "535"], "leave_type_id": ["None", "5"], "reject_reason": ["None", ""], "requested_date": ["None", "2025-02-03 10:31:19.373308+00:00"], "requested_days": ["None", "1"], "history_relation": ["None", "8"], "history_highlight": ["None", "False"], "end_date_breakdown": ["None", "full_day"], "leave_clashes_count": ["None", "0"], "start_date_breakdown": ["None", "full_day"], "approved_available_days": ["None", "0"], "approved_carryforward_days": ["None", "0"]} 2025-02-03 10:31:19.467359+00 535 102 122.176.134.248 \N \N \N
4854 8 8 Sahil Koundal (GN0576) | Intern Casual Leave | requested 0 {"id": ["None", "8"], "status": ["None", "requested"], "end_date": ["None", "2025-02-03"], "is_active": ["None", "True"], "attachment": ["None", ""], "created_at": ["None", "2025-02-03 10:31:19.456989"], "created_by": ["None", "297"], "start_date": ["None", "2025-02-03"], "description": ["None", "Testing"], "employee_id": ["None", "297"], "history_set": ["None", "leave.HistoricalLeaveRequest.None"], "modified_by": ["None", "535"], "leave_type_id": ["None", "5"], "reject_reason": ["None", ""], "requested_date": ["None", "2025-02-03 10:31:19.373308+00:00"], "requested_days": ["None", "1"], "end_date_breakdown": ["None", "full_day"], "leave_clashes_count": ["None", "0"], "start_date_breakdown": ["None", "full_day"], "approved_available_days": ["None", "0"], "approved_carryforward_days": ["None", "0"]} 2025-02-03 10:31:19.477568+00 535 92 122.176.134.248 \N \N \N
4855 82 82 Sahil Koundal (GN0576) New leave request created for Sahil Koundal (GN0576). 0 minutes ago 0 {"id": ["None", "82"], "data": ["null", "{\\"icon\\": \\"people-circle\\", \\"redirect\\": \\"/leave/request-view/?id=8\\", \\"verb_ar\\": \\"\\\\u062a\\\\u0645 \\\\u0625\\\\u0646\\\\u0634\\\\u0627\\\\u0621 \\\\u0637\\\\u0644\\\\u0628 \\\\u0625\\\\u062c\\\\u0627\\\\u0632\\\\u0629 \\\\u062c\\\\u062f\\\\u064a\\\\u062f \\\\u0644\\\\u0640 Sahil Koundal (GN0576).\\", \\"verb_de\\": \\"Neuer Urlaubsantrag f\\\\u00fcr Sahil Koundal (GN0576) erstellt.\\", \\"verb_es\\": \\"Nueva solicitud de permiso creada para Sahil Koundal (GN0576).\\", \\"verb_fr\\": \\"Nouvelle demande de cong\\\\u00e9 cr\\\\u00e9\\\\u00e9e pour Sahil Koundal (GN0576).\\"}"], "verb": ["None", "New leave request created for Sahil Koundal (GN0576)."], "actor": ["None", "Sahil Koundal (GN0576)"], "level": ["None", "info"], "public": ["None", "True"], "unread": ["None", "True"], "deleted": ["None", "False"], "emailed": ["None", "False"], "verb_ar": ["None", "تم إنشاء طلب إجازة جديد لـ Sahil Koundal (GN0576)."], "verb_de": ["None", "Neuer Urlaubsantrag für Sahil Koundal (GN0576) erstellt."], "verb_en": ["None", ""], "verb_es": ["None", "Nueva solicitud de permiso creada para Sahil Koundal (GN0576)."], "verb_fr": ["None", "Nouvelle demande de congé créée pour Sahil Koundal (GN0576)."], "recipient": ["None", "517"], "timestamp": ["None", "2025-02-03 10:31:19.495703"], "actor_object_id": ["None", "297"], "actor_content_type": ["None", "53"]} 2025-02-03 10:31:19.501216+00 535 7 122.176.134.248 \N \N \N
6177 c0rtzzzwy2tpg6zcwvolyjdcuoaf14tk \N c0rtzzzwy2tpg6zcwvolyjdcuoaf14tk 0 {"expire_date": ["None", "2025-02-17 13:32:27.972745"], "session_key": ["None", "c0rtzzzwy2tpg6zcwvolyjdcuoaf14tk"], "session_data": ["None", "eyJ0aXRsZSI6IkRBU0hCT0FSRCJ9:1tewYt:kLCnOWrc5gVxn1oTABZgGT4_TABj-6aU8iD9d3sv1D4"]} 2025-02-03 13:32:27.974257+00 \N 6 \N \N \N \N
4856 75 75 Sahil Koundal (GN0576) | Intern Casual Leave as of 2025-02-03 10:31:19.521465+00:00 0 {"id": ["None", "30"], "is_active": ["None", "True"], "created_at": ["None", "2025-02-03 10:13:02.398542"], "created_by": ["None", "273"], "history_id": ["None", "75"], "reset_date": ["None", "2025-02-28"], "employee_id": ["None", "297"], "modified_by": ["None", "273"], "history_date": ["None", "2025-02-03 10:31:19.521465"], "history_type": ["None", "~"], "assigned_date": ["None", "2025-02-03"], "leave_type_id": ["None", "5"], "available_days": ["None", "1.0"], "history_relation": ["None", "30"], "total_leave_days": ["None", "1.0"], "carryforward_days": ["None", "0.0"], "history_highlight": ["None", "False"]} 2025-02-03 10:31:19.532187+00 \N 105 \N \N \N \N
4857 19 19 EmailLog object (19) 0 {"id": ["None", "19"], "to": ["None", "['shipra.goyal@growthnatives.com']"], "body": ["None", "\\n<!DOCTYPE html>\\n<html lang=\\"en\\">\\n <head>\\n <meta charset=\\"UTF-8\\" />\\n <meta http-equiv=\\"X-UA-Compatible\\" content=\\"IE=edge\\" />\\n <meta name=\\"viewport\\" content=\\"width=device-width, initial-scale=1.0\\" />\\n <title>Growth Natives News Letter Design</title>\\n\\n <style>\\n body {\\n margin: 0;\\n background-color: #e5e5e5;\\n }\\n\\n table {\\n border-spacing: 0;\\n }\\n\\n td {\\n padding: 0;\\n }\\n\\n img {\\n border: 0;\\n }\\n\\n .hr-wrapper {\\n width: 100%;\\n table-layout: fixed;\\n background-color: #e5e5e5;\\n padding-bottom: 60px;\\n }\\n\\n .hr-table-main {\\n background-color: #fff;\\n margin: 0 auto;\\n width: 100%;\\n max-width: 650px;\\n border-spacing: 0;\\n font-family: Arial, \\"Helvetica Neue\\", Helvetica, sans-serif;\\n color: #1c1c1c;\\n margin-top: 15px;\\n }\\n\\n .hr-table-main__header {\\n table-layout: fixed;\\n padding: 15px;\\n width: 100%;\\n }\\n\\n .hr-link {\\n color: #6f6f6f;\\n font-size: 12px;\\n }\\n\\n .hr-callout-table {\\n table-layout: fixed;\\n width: 100%;\\n border: 1px solid #f0f0f0;\\n font-size: 14px;\\n }\\n\\n .hr-callout-table td {\\n padding: 10px;\\n background-color: #fafafa;\\n }\\n </style>\\n </head>\\n\\n <body>\\n <center class=\\"hr-wrapper\\">\\n <table class=\\"hr-table-main\\" width=\\"100%\\" style=\\"margin-top: 60px\\">\\n <tr>\\n <td>\\n <table class=\\"hr-table-main__header\\">\\n <tr>\\n <td align=\\"center\\" style=\\"width: 50%;\\">\\n <img\\n src=\\"https://erp.demandtech.org/static/images/ui/growthnatives.png\\"\\n height=\\"40\\"\\n width=\\"120.4\\"\\n />\\n </td>\\n <td style=\\"width: 50%; text-align: right; display:none;\\">\\n <a href=\\"#\\" class=\\"hr-link\\"\\n >View in browser</a\\n >\\n </td>\\n </tr>\\n </table>\\n </td>\\n </tr>\\n <tr>\\n <td\\n align=\\"center\\"\\n style=\\"padding-top: 20px; padding-bottom: 20px; display: none;\\"\\n >\\n <img\\n src=\\"https://erp.demandtech.org/static/images/ui/leave.svg\\"\\n style=\\"\\n display: block;\\n height: auto;\\n border: 0;\\n width: 20%;\\n \\"\\n width=\\"272\\"\\n />\\n </td>\\n </tr>\\n <tr>\\n <td\\n style=\\"padding: 15px 25px 0 25px; font-size: 24px\\"\\n align=\\"center\\"\\n >\\n <strong\\n >Hello Shipra Goyal,\\n Leave request has been requested by Sahil Koundal (GN0576)!</strong\\n >\\n </td>\\n </tr>\\n <tr>\\n <td align=\\"center\\" style=\\"padding-top: 0px\\">\\n <p style=\\"width: 90%\\">This is to inform you that a leave request has been requested by Sahil Koundal (GN0576). Take the necessary actions for the leave request. Should you have any additional information or updates, please feel free to communicate directly with the Sahil Koundal (GN0576).</p>\\n </td>\\n </tr>\\n \\n <tr>\\n <td style=\\"padding: 15px\\" align=\\"center\\">\\n <a\\n href=\\"https://erp.demandtech.org/leave/request-view/?id=8\\"\\n style=\\"\\n background-color: #e54f37;\\n color: #fff;\\n border-radius: 10px;\\n display: inline-block;\\n padding: 15px 25px;\\n text-decoration: none;\\n font-weight: bold;\\n \\"\\n >View Leave Request</a\\n >\\n </td>\\n </tr>\\n \\n\\n <tr>\\n <td\\n align=\\"center\\"\\n style=\\"\\n padding-left: 15px;\\n padding-right: 15px;\\n padding-top: 30px;\\n padding-bottom: 15px;\\n color: #5c5c5c;\\n font-size: 12px;\\n \\"\\n >\\n This mail was sent you because your email has been\\n enrolled as an employee at .<br />\\n Don't want to receive mails like these anymore?\\n <a href=\\"#\\" style=\\"color: #5c5c5c\\">Unsubscribe here</a>.\\n </td>\\n </tr>\\n <tr>\\n <td\\n align=\\"center\\"\\n style=\\"\\n padding-left: 15px;\\n padding-right: 15px;\\n padding-bottom: 10px;\\n padding-top: 10px;\\n color: #5c5c5c;\\n font-size: 12px;\\n \\"\\n >\\n © 2025 GrowthNatives , Inc.\\n </td>\\n </tr>\\n </table>\\n </center>\\n </body>\\n</html>\\n"], "status": ["None", "sent"], "subject": ["None", "Leave request has been requested by Sahil Koundal (GN0576)"], "created_at": ["None", "2025-02-03 10:31:21.399550"], "from_email": ["None", "info viva india.team <info@growthnatives.com>"]} 2025-02-03 10:31:21.40439+00 \N 23 \N \N \N \N
4858 20 20 EmailLog object (20) 0 {"id": ["None", "20"], "to": ["None", "['sahil.koundal@growthnatives.co']"], "body": ["None", "\\n<!DOCTYPE html>\\n<html lang=\\"en\\">\\n <head>\\n <meta charset=\\"UTF-8\\" />\\n <meta http-equiv=\\"X-UA-Compatible\\" content=\\"IE=edge\\" />\\n <meta name=\\"viewport\\" content=\\"width=device-width, initial-scale=1.0\\" />\\n <title>Growth Natives News Letter Design</title>\\n\\n <style>\\n body {\\n margin: 0;\\n background-color: #e5e5e5;\\n }\\n\\n table {\\n border-spacing: 0;\\n }\\n\\n td {\\n padding: 0;\\n }\\n\\n img {\\n border: 0;\\n }\\n\\n .hr-wrapper {\\n width: 100%;\\n table-layout: fixed;\\n background-color: #e5e5e5;\\n padding-bottom: 60px;\\n }\\n\\n .hr-table-main {\\n background-color: #fff;\\n margin: 0 auto;\\n width: 100%;\\n max-width: 650px;\\n border-spacing: 0;\\n font-family: Arial, \\"Helvetica Neue\\", Helvetica, sans-serif;\\n color: #1c1c1c;\\n margin-top: 15px;\\n }\\n\\n .hr-table-main__header {\\n table-layout: fixed;\\n padding: 15px;\\n width: 100%;\\n }\\n\\n .hr-link {\\n color: #6f6f6f;\\n font-size: 12px;\\n }\\n\\n .hr-callout-table {\\n table-layout: fixed;\\n width: 100%;\\n border: 1px solid #f0f0f0;\\n font-size: 14px;\\n }\\n\\n .hr-callout-table td {\\n padding: 10px;\\n background-color: #fafafa;\\n }\\n </style>\\n </head>\\n\\n <body>\\n <center class=\\"hr-wrapper\\">\\n <table class=\\"hr-table-main\\" width=\\"100%\\" style=\\"margin-top: 60px\\">\\n <tr>\\n <td>\\n <table class=\\"hr-table-main__header\\">\\n <tr>\\n <td align=\\"center\\" style=\\"width: 50%;\\">\\n <img\\n src=\\"https://erp.demandtech.org/static/images/ui/growthnatives.png\\"\\n height=\\"40\\"\\n width=\\"120.4\\"\\n />\\n </td>\\n <td style=\\"width: 50%; text-align: right; display:none;\\">\\n <a href=\\"#\\" class=\\"hr-link\\"\\n >View in browser</a\\n >\\n </td>\\n </tr>\\n </table>\\n </td>\\n </tr>\\n <tr>\\n <td\\n align=\\"center\\"\\n style=\\"padding-top: 20px; padding-bottom: 20px; display: none;\\"\\n >\\n <img\\n src=\\"https://erp.demandtech.org/static/images/ui/leave.svg\\"\\n style=\\"\\n display: block;\\n height: auto;\\n border: 0;\\n width: 20%;\\n \\"\\n width=\\"272\\"\\n />\\n </td>\\n </tr>\\n <tr>\\n <td\\n style=\\"padding: 15px 25px 0 25px; font-size: 24px\\"\\n align=\\"center\\"\\n >\\n <strong\\n >Hello Sahil Koundal,\\n Leave request created successfully!</strong\\n >\\n </td>\\n </tr>\\n <tr>\\n <td align=\\"center\\" style=\\"padding-top: 0px\\">\\n <p style=\\"width: 90%\\">This is to inform you that the leave request you created has been successfully logged into our system. The manager will now take the necessary actions to address leave request. Should you have any additional information or updates, please feel free to communicate directly with the Shipra Goyal (GN0135).</p>\\n </td>\\n </tr>\\n \\n <tr>\\n <td style=\\"padding: 15px\\" align=\\"center\\">\\n <a\\n href=\\"https://erp.demandtech.org/leave/request-view/?id=8\\"\\n style=\\"\\n background-color: #e54f37;\\n color: #fff;\\n border-radius: 10px;\\n display: inline-block;\\n padding: 15px 25px;\\n text-decoration: none;\\n font-weight: bold;\\n \\"\\n >View Leave Request</a\\n >\\n </td>\\n </tr>\\n \\n\\n <tr>\\n <td\\n align=\\"center\\"\\n style=\\"\\n padding-left: 15px;\\n padding-right: 15px;\\n padding-top: 30px;\\n padding-bottom: 15px;\\n color: #5c5c5c;\\n font-size: 12px;\\n \\"\\n >\\n This mail was sent you because your email has been\\n enrolled as an employee at .<br />\\n Don't want to receive mails like these anymore?\\n <a href=\\"#\\" style=\\"color: #5c5c5c\\">Unsubscribe here</a>.\\n </td>\\n </tr>\\n <tr>\\n <td\\n align=\\"center\\"\\n style=\\"\\n padding-left: 15px;\\n padding-right: 15px;\\n padding-bottom: 10px;\\n padding-top: 10px;\\n color: #5c5c5c;\\n font-size: 12px;\\n \\"\\n >\\n © 2025 GrowthNatives , Inc.\\n </td>\\n </tr>\\n </table>\\n </center>\\n </body>\\n</html>\\n"], "status": ["None", "sent"], "subject": ["None", "Leave request created successfully"], "created_at": ["None", "2025-02-03 10:31:23.156166"], "from_email": ["None", "info viva india.team <info@growthnatives.com>"]} 2025-02-03 10:31:23.159352+00 \N 23 \N \N \N \N
4859 16 16 Sahil Koundal (GN0576) | Intern Casual Leave | requested as of 2025-02-03 10:33:04.535681+00:00 0 {"id": ["None", "8"], "status": ["None", "requested"], "end_date": ["None", "2025-02-03"], "is_active": ["None", "True"], "attachment": ["None", ""], "created_at": ["None", "2025-02-03 10:31:19.456989"], "created_by": ["None", "297"], "history_id": ["None", "16"], "start_date": ["None", "2025-02-03"], "description": ["None", "Testing"], "employee_id": ["None", "297"], "modified_by": ["None", "535"], "history_date": ["None", "2025-02-03 10:33:04.535681"], "history_type": ["None", "-"], "history_user": ["None", "535"], "leave_type_id": ["None", "5"], "reject_reason": ["None", ""], "requested_date": ["None", "2025-02-03"], "requested_days": ["None", "1.0"], "history_relation": ["None", "8"], "history_highlight": ["None", "False"], "end_date_breakdown": ["None", "full_day"], "leave_clashes_count": ["None", "0"], "start_date_breakdown": ["None", "full_day"], "approved_available_days": ["None", "0.0"], "approved_carryforward_days": ["None", "0.0"]} 2025-02-03 10:33:04.543977+00 535 102 122.176.134.248 \N \N \N
4860 8 8 Sahil Koundal (GN0576) | Intern Casual Leave | requested 2 {"id": ["8", "None"], "status": ["requested", "None"], "end_date": ["2025-02-03", "None"], "is_active": ["True", "None"], "attachment": ["", "None"], "created_at": ["2025-02-03 10:31:19.456989", "None"], "created_by": ["297", "None"], "start_date": ["2025-02-03", "None"], "description": ["Testing", "None"], "employee_id": ["297", "None"], "history_set": ["leave.HistoricalLeaveRequest.None", "None"], "modified_by": ["535", "None"], "leave_type_id": ["5", "None"], "reject_reason": ["", "None"], "requested_date": ["2025-02-03", "None"], "requested_days": ["1.0", "None"], "end_date_breakdown": ["full_day", "None"], "leave_clashes_count": ["0", "None"], "start_date_breakdown": ["full_day", "None"], "approved_available_days": ["0.0", "None"], "approved_carryforward_days": ["0.0", "None"]} 2025-02-03 10:33:04.554344+00 535 92 122.176.134.248 \N \N \N
4861 3 3 Leave Request 1 {"condition": ["<form id=\\"multipleConditionForm\\" data-select2-id=\\"multipleConditionForm\\"><table id=\\"multipleConditionTable\\" data-select2-id=\\"multipleConditionTable\\">\\r\\n <tbody data-select2-id=\\"1053\\"><tr>\\r\\n <th>Code</th>\\r\\n <th>Field</th>\\r\\n <th>Condition</th>\\r\\n <th>Value</th>\\r\\n <th>Logic</th>\\r\\n <th>\\r\\n Action\\r\\n <span title=\\"Reload\\" onclick=\\"$('[name=model]').change()\\">\\r\\n <ion-icon name=\\"refresh-circle\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"refresh circle\\"></ion-icon>\\r\\n </span>\\r\\n </th>\\r\\n </tr>\\r\\n <tr class=\\"dynamic-condition-row\\" data-select2-id=\\"3072\\">\\r\\n <td class=\\"sn\\">C1</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\" data-select2-id=\\"1150\\"><option value=\\"automation_multiple_is_active\\">Is Active</option><option value=\\"automation_multiple_employee_id\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" selected=\\"selected\\" data-select2-id=\\"1152\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\">Description</option><option value=\\"automation_multiple_attachment\\">Attachment</option><option value=\\"automation_multiple_status\\">Status</option><option value=\\"automation_multiple_requested_date\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"3165\\" style=\\"width: 126.225px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-j1-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-j1-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1154\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"1156\\">==</option>\\r\\n <option value=\\"!=\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"3167\\" style=\\"width: 59.7125px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-vx-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-vx-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" tabindex=\\"-1\\" class=\\"select2-hidden-accessible\\" aria-hidden=\\"true\\" data-select2-id=\\"1159\\"><option value=\\"5\\" data-select2-id=\\"1161\\">Intern Casual Leave</option><option value=\\"4\\">Casual Leave</option><option value=\\"3\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"3170\\" style=\\"width: 176.8px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-zk-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-zk-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Intern Casual Leave\\">Intern Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"3071\\">\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1163\\">\\r\\n <option value=\\"and\\" data-select2-id=\\"1165\\" selected=\\"selected\\">And</option>\\r\\n <option value=\\"or\\" data-select2-id=\\"3073\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default select2-container--below\\" dir=\\"ltr\\" data-select2-id=\\"3171\\" style=\\"width: 38.2875px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-0w-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-0w-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"And\\">And</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr>\\r\\n \\r\\n \\r\\n \\r\\n <tr class=\\"dynamic-condition-row\\" data-select2-id=\\"1172\\">\\r\\n <td class=\\"sn\\">C2</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" data-select2-id=\\"762\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\"><option value=\\"automation_multiple_is_active\\" data-select2-id=\\"764\\">Is Active</option><option value=\\"automation_multiple_employee_id\\" data-select2-id=\\"1057\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\" data-select2-id=\\"1058\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\" data-select2-id=\\"1059\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\" data-select2-id=\\"1060\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\" data-select2-id=\\"1061\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\" data-select2-id=\\"1062\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\" data-select2-id=\\"1063\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\" data-select2-id=\\"1064\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\" data-select2-id=\\"1065\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\" data-select2-id=\\"1066\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\" data-select2-id=\\"1067\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\" data-select2-id=\\"1068\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\" data-select2-id=\\"1069\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\" data-select2-id=\\"1070\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\" data-select2-id=\\"1071\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\" data-select2-id=\\"1072\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\" data-select2-id=\\"1073\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\" data-select2-id=\\"1074\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\" data-select2-id=\\"1075\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\" data-select2-id=\\"1076\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\" data-select2-id=\\"1077\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\" data-select2-id=\\"1078\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\" data-select2-id=\\"1079\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\" data-select2-id=\\"1080\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" data-select2-id=\\"1081\\" selected=\\"selected\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\" data-select2-id=\\"1082\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\" data-select2-id=\\"1083\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\" data-select2-id=\\"1084\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\" data-select2-id=\\"1085\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\" data-select2-id=\\"1086\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\" data-select2-id=\\"1087\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\" data-select2-id=\\"1088\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\" data-select2-id=\\"1089\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\" data-select2-id=\\"1090\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\" data-select2-id=\\"1091\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\" data-select2-id=\\"1092\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\" data-select2-id=\\"1093\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\" data-select2-id=\\"1094\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\" data-select2-id=\\"1095\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\" data-select2-id=\\"1096\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\" data-select2-id=\\"1097\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\" data-select2-id=\\"1098\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\" data-select2-id=\\"1099\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\" data-select2-id=\\"1100\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\" data-select2-id=\\"1101\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\" data-select2-id=\\"1102\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\" data-select2-id=\\"1103\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\" data-select2-id=\\"1104\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\" data-select2-id=\\"1105\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\" data-select2-id=\\"1106\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\" data-select2-id=\\"1107\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\" data-select2-id=\\"1108\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\" data-select2-id=\\"1109\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\" data-select2-id=\\"1110\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\" data-select2-id=\\"1111\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\" data-select2-id=\\"1112\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\" data-select2-id=\\"1113\\">Description</option><option value=\\"automation_multiple_attachment\\" data-select2-id=\\"1114\\">Attachment</option><option value=\\"automation_multiple_status\\" data-select2-id=\\"1115\\">Status</option><option value=\\"automation_multiple_requested_date\\" data-select2-id=\\"1116\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\" data-select2-id=\\"1117\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\" data-select2-id=\\"1118\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\" data-select2-id=\\"1119\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\" data-select2-id=\\"1120\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\" data-select2-id=\\"1121\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\" data-select2-id=\\"1122\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\" data-select2-id=\\"1123\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\" data-select2-id=\\"1124\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\" data-select2-id=\\"1125\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\" data-select2-id=\\"1126\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\" data-select2-id=\\"1127\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\" data-select2-id=\\"1128\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\" data-select2-id=\\"1129\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\" data-select2-id=\\"1130\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\" data-select2-id=\\"1131\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\" data-select2-id=\\"1132\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\" data-select2-id=\\"1133\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\" data-select2-id=\\"1134\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\" data-select2-id=\\"1135\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\" data-select2-id=\\"1136\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\" data-select2-id=\\"1137\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\" data-select2-id=\\"1138\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\" data-select2-id=\\"1139\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\" data-select2-id=\\"1140\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\" data-select2-id=\\"1141\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\" data-select2-id=\\"1142\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\" data-select2-id=\\"1143\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"3172\\" style=\\"width: 143.688px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-2b-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-2b-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"3062\\">\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" data-select2-id=\\"765\\" tabindex=\\"-1\\" aria-hidden=\\"true\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"767\\">==</option>\\r\\n <option value=\\"!=\\" data-select2-id=\\"3069\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"3173\\" style=\\"width: 62.8875px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-fb-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-fb-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\" data-select2-id=\\"1171\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" data-select2-id=\\"1147\\" tabindex=\\"-1\\" class=\\"w-100 select2-hidden-accessible\\" aria-hidden=\\"true\\"><option value=\\"5\\" data-select2-id=\\"1149\\">Intern Casual Leave</option><option value=\\"4\\" data-select2-id=\\"1173\\">Casual Leave</option><option value=\\"3\\" data-select2-id=\\"1174\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default select2-container--below select2-container--focus\\" dir=\\"ltr\\" data-select2-id=\\"3174\\" style=\\"width: 185.587px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-s7-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-s7-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Casual Leave\\">Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"3075\\">\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" data-select2-id=\\"768\\" tabindex=\\"-1\\" aria-hidden=\\"true\\">\\r\\n <option value=\\"and\\" data-select2-id=\\"770\\">And</option>\\r\\n <option value=\\"or\\" data-select2-id=\\"3076\\" selected=\\"selected\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default select2-container--below\\" dir=\\"ltr\\" data-select2-id=\\"3175\\" style=\\"width: 52.875px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-c0-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-c0-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Or\\">Or</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr></tbody></table></form>", "<form id=\\"multipleConditionForm\\" data-select2-id=\\"multipleConditionForm\\"><table id=\\"multipleConditionTable\\" data-select2-id=\\"multipleConditionTable\\">\\r\\n <tbody data-select2-id=\\"1053\\"><tr>\\r\\n <th>Code</th>\\r\\n <th>Field</th>\\r\\n <th>Condition</th>\\r\\n <th>Value</th>\\r\\n <th>Logic</th>\\r\\n <th>\\r\\n Action\\r\\n <span title=\\"Reload\\" onclick=\\"$('[name=model]').change()\\">\\r\\n <ion-icon name=\\"refresh-circle\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"refresh circle\\"></ion-icon>\\r\\n </span>\\r\\n </th>\\r\\n </tr>\\r\\n <tr class=\\"dynamic-condition-row\\" data-select2-id=\\"3072\\">\\r\\n <td class=\\"sn\\">C1</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\" data-select2-id=\\"1150\\"><option value=\\"automation_multiple_is_active\\">Is Active</option><option value=\\"automation_multiple_employee_id\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" selected=\\"selected\\" data-select2-id=\\"1152\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\">Description</option><option value=\\"automation_multiple_attachment\\">Attachment</option><option value=\\"automation_multiple_status\\">Status</option><option value=\\"automation_multiple_requested_date\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1\\" style=\\"width: 126.225px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-ul-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-ul-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1154\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"1156\\">==</option>\\r\\n <option value=\\"!=\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"2\\" style=\\"width: 59.7125px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-32-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-32-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" tabindex=\\"-1\\" class=\\"select2-hidden-accessible\\" aria-hidden=\\"true\\" data-select2-id=\\"1159\\"><option value=\\"5\\" data-select2-id=\\"1161\\">Intern Casual Leave</option><option value=\\"4\\">Casual Leave</option><option value=\\"3\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"3\\" style=\\"width: 176.8px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-0c-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-0c-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Intern Casual Leave\\">Intern Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"3071\\">\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1163\\">\\r\\n <option value=\\"and\\" data-select2-id=\\"1165\\" selected=\\"selected\\">And</option>\\r\\n <option value=\\"or\\" data-select2-id=\\"3073\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"4\\" style=\\"width: 38.2875px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-9c-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-9c-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"And\\">And</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr>\\r\\n \\r\\n \\r\\n \\r\\n <tr class=\\"dynamic-condition-row\\" data-select2-id=\\"1172\\">\\r\\n <td class=\\"sn\\">C2</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" data-select2-id=\\"762\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\"><option value=\\"automation_multiple_is_active\\" data-select2-id=\\"764\\">Is Active</option><option value=\\"automation_multiple_employee_id\\" data-select2-id=\\"1057\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\" data-select2-id=\\"1058\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\" data-select2-id=\\"1059\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\" data-select2-id=\\"1060\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\" data-select2-id=\\"1061\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\" data-select2-id=\\"1062\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\" data-select2-id=\\"1063\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\" data-select2-id=\\"1064\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\" data-select2-id=\\"1065\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\" data-select2-id=\\"1066\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\" data-select2-id=\\"1067\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\" data-select2-id=\\"1068\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\" data-select2-id=\\"1069\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\" data-select2-id=\\"1070\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\" data-select2-id=\\"1071\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\" data-select2-id=\\"1072\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\" data-select2-id=\\"1073\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\" data-select2-id=\\"1074\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\" data-select2-id=\\"1075\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\" data-select2-id=\\"1076\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\" data-select2-id=\\"1077\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\" data-select2-id=\\"1078\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\" data-select2-id=\\"1079\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\" data-select2-id=\\"1080\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" data-select2-id=\\"1081\\" selected=\\"selected\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\" data-select2-id=\\"1082\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\" data-select2-id=\\"1083\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\" data-select2-id=\\"1084\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\" data-select2-id=\\"1085\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\" data-select2-id=\\"1086\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\" data-select2-id=\\"1087\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\" data-select2-id=\\"1088\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\" data-select2-id=\\"1089\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\" data-select2-id=\\"1090\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\" data-select2-id=\\"1091\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\" data-select2-id=\\"1092\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\" data-select2-id=\\"1093\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\" data-select2-id=\\"1094\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\" data-select2-id=\\"1095\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\" data-select2-id=\\"1096\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\" data-select2-id=\\"1097\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\" data-select2-id=\\"1098\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\" data-select2-id=\\"1099\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\" data-select2-id=\\"1100\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\" data-select2-id=\\"1101\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\" data-select2-id=\\"1102\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\" data-select2-id=\\"1103\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\" data-select2-id=\\"1104\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\" data-select2-id=\\"1105\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\" data-select2-id=\\"1106\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\" data-select2-id=\\"1107\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\" data-select2-id=\\"1108\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\" data-select2-id=\\"1109\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\" data-select2-id=\\"1110\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\" data-select2-id=\\"1111\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\" data-select2-id=\\"1112\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\" data-select2-id=\\"1113\\">Description</option><option value=\\"automation_multiple_attachment\\" data-select2-id=\\"1114\\">Attachment</option><option value=\\"automation_multiple_status\\" data-select2-id=\\"1115\\">Status</option><option value=\\"automation_multiple_requested_date\\" data-select2-id=\\"1116\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\" data-select2-id=\\"1117\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\" data-select2-id=\\"1118\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\" data-select2-id=\\"1119\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\" data-select2-id=\\"1120\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\" data-select2-id=\\"1121\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\" data-select2-id=\\"1122\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\" data-select2-id=\\"1123\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\" data-select2-id=\\"1124\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\" data-select2-id=\\"1125\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\" data-select2-id=\\"1126\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\" data-select2-id=\\"1127\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\" data-select2-id=\\"1128\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\" data-select2-id=\\"1129\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\" data-select2-id=\\"1130\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\" data-select2-id=\\"1131\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\" data-select2-id=\\"1132\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\" data-select2-id=\\"1133\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\" data-select2-id=\\"1134\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\" data-select2-id=\\"1135\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\" data-select2-id=\\"1136\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\" data-select2-id=\\"1137\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\" data-select2-id=\\"1138\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\" data-select2-id=\\"1139\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\" data-select2-id=\\"1140\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\" data-select2-id=\\"1141\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\" data-select2-id=\\"1142\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\" data-select2-id=\\"1143\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"5\\" style=\\"width: 137.262px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-pb-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-pb-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"3062\\">\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" data-select2-id=\\"765\\" tabindex=\\"-1\\" aria-hidden=\\"true\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"767\\">==</option>\\r\\n <option value=\\"!=\\" data-select2-id=\\"3069\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"6\\" style=\\"width: 62.0625px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-8a-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-8a-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\" data-select2-id=\\"1171\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" data-select2-id=\\"1147\\" tabindex=\\"-1\\" class=\\"w-100 select2-hidden-accessible\\" aria-hidden=\\"true\\"><option value=\\"5\\" data-select2-id=\\"1149\\">Intern Casual Leave</option><option value=\\"4\\" data-select2-id=\\"1173\\">Casual Leave</option><option value=\\"3\\" data-select2-id=\\"1174\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default select2-container--below\\" dir=\\"ltr\\" data-select2-id=\\"7\\" style=\\"width: 183.288px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-pg-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-pg-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Casual Leave\\">Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"3075\\">\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" data-select2-id=\\"768\\" tabindex=\\"-1\\" aria-hidden=\\"true\\">\\r\\n <option value=\\"and\\" data-select2-id=\\"770\\" selected=\\"selected\\">And</option>\\r\\n <option value=\\"or\\" data-select2-id=\\"3076\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default select2-container--below select2-container--focus\\" dir=\\"ltr\\" data-select2-id=\\"8\\" style=\\"width: 58.7375px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-pe-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-pe-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"And\\">And</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr></tbody></table></form>"], "condition_html": ["<table id=\\"multipleConditionTable\\" data-select2-id=\\"multipleConditionTable\\">\\r\\n <tbody data-select2-id=\\"1053\\"><tr>\\r\\n <th>Code</th>\\r\\n <th>Field</th>\\r\\n <th>Condition</th>\\r\\n <th>Value</th>\\r\\n <th>Logic</th>\\r\\n <th>\\r\\n Action\\r\\n <span title=\\"Reload\\" onclick=\\"$('[name=model]').change()\\">\\r\\n <ion-icon name=\\"refresh-circle\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"refresh circle\\"></ion-icon>\\r\\n </span>\\r\\n </th>\\r\\n </tr>\\r\\n <tr class=\\"dynamic-condition-row\\" data-select2-id=\\"3072\\">\\r\\n <td class=\\"sn\\">C1</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\" data-select2-id=\\"1150\\"><option value=\\"automation_multiple_is_active\\">Is Active</option><option value=\\"automation_multiple_employee_id\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" selected=\\"selected\\" data-select2-id=\\"1152\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\">Description</option><option value=\\"automation_multiple_attachment\\">Attachment</option><option value=\\"automation_multiple_status\\">Status</option><option value=\\"automation_multiple_requested_date\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"3165\\" style=\\"width: 126.225px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-j1-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-j1-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1154\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"1156\\">==</option>\\r\\n <option value=\\"!=\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"3167\\" style=\\"width: 59.7125px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-vx-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-vx-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" tabindex=\\"-1\\" class=\\"select2-hidden-accessible\\" aria-hidden=\\"true\\" data-select2-id=\\"1159\\"><option value=\\"5\\" data-select2-id=\\"1161\\">Intern Casual Leave</option><option value=\\"4\\">Casual Leave</option><option value=\\"3\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"3170\\" style=\\"width: 176.8px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-zk-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-zk-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Intern Casual Leave\\">Intern Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"3071\\">\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1163\\">\\r\\n <option value=\\"and\\" data-select2-id=\\"1165\\" selected=\\"selected\\">And</option>\\r\\n <option value=\\"or\\" data-select2-id=\\"3073\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default select2-container--below\\" dir=\\"ltr\\" data-select2-id=\\"3171\\" style=\\"width: 38.2875px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-0w-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-0w-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"And\\">And</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr>\\r\\n \\r\\n \\r\\n \\r\\n <tr class=\\"dynamic-condition-row\\" data-select2-id=\\"1172\\">\\r\\n <td class=\\"sn\\">C2</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" data-select2-id=\\"762\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\"><option value=\\"automation_multiple_is_active\\" data-select2-id=\\"764\\">Is Active</option><option value=\\"automation_multiple_employee_id\\" data-select2-id=\\"1057\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\" data-select2-id=\\"1058\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\" data-select2-id=\\"1059\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\" data-select2-id=\\"1060\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\" data-select2-id=\\"1061\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\" data-select2-id=\\"1062\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\" data-select2-id=\\"1063\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\" data-select2-id=\\"1064\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\" data-select2-id=\\"1065\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\" data-select2-id=\\"1066\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\" data-select2-id=\\"1067\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\" data-select2-id=\\"1068\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\" data-select2-id=\\"1069\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\" data-select2-id=\\"1070\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\" data-select2-id=\\"1071\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\" data-select2-id=\\"1072\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\" data-select2-id=\\"1073\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\" data-select2-id=\\"1074\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\" data-select2-id=\\"1075\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\" data-select2-id=\\"1076\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\" data-select2-id=\\"1077\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\" data-select2-id=\\"1078\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\" data-select2-id=\\"1079\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\" data-select2-id=\\"1080\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" data-select2-id=\\"1081\\" selected=\\"selected\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\" data-select2-id=\\"1082\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\" data-select2-id=\\"1083\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\" data-select2-id=\\"1084\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\" data-select2-id=\\"1085\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\" data-select2-id=\\"1086\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\" data-select2-id=\\"1087\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\" data-select2-id=\\"1088\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\" data-select2-id=\\"1089\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\" data-select2-id=\\"1090\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\" data-select2-id=\\"1091\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\" data-select2-id=\\"1092\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\" data-select2-id=\\"1093\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\" data-select2-id=\\"1094\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\" data-select2-id=\\"1095\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\" data-select2-id=\\"1096\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\" data-select2-id=\\"1097\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\" data-select2-id=\\"1098\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\" data-select2-id=\\"1099\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\" data-select2-id=\\"1100\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\" data-select2-id=\\"1101\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\" data-select2-id=\\"1102\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\" data-select2-id=\\"1103\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\" data-select2-id=\\"1104\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\" data-select2-id=\\"1105\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\" data-select2-id=\\"1106\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\" data-select2-id=\\"1107\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\" data-select2-id=\\"1108\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\" data-select2-id=\\"1109\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\" data-select2-id=\\"1110\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\" data-select2-id=\\"1111\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\" data-select2-id=\\"1112\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\" data-select2-id=\\"1113\\">Description</option><option value=\\"automation_multiple_attachment\\" data-select2-id=\\"1114\\">Attachment</option><option value=\\"automation_multiple_status\\" data-select2-id=\\"1115\\">Status</option><option value=\\"automation_multiple_requested_date\\" data-select2-id=\\"1116\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\" data-select2-id=\\"1117\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\" data-select2-id=\\"1118\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\" data-select2-id=\\"1119\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\" data-select2-id=\\"1120\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\" data-select2-id=\\"1121\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\" data-select2-id=\\"1122\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\" data-select2-id=\\"1123\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\" data-select2-id=\\"1124\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\" data-select2-id=\\"1125\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\" data-select2-id=\\"1126\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\" data-select2-id=\\"1127\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\" data-select2-id=\\"1128\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\" data-select2-id=\\"1129\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\" data-select2-id=\\"1130\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\" data-select2-id=\\"1131\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\" data-select2-id=\\"1132\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\" data-select2-id=\\"1133\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\" data-select2-id=\\"1134\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\" data-select2-id=\\"1135\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\" data-select2-id=\\"1136\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\" data-select2-id=\\"1137\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\" data-select2-id=\\"1138\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\" data-select2-id=\\"1139\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\" data-select2-id=\\"1140\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\" data-select2-id=\\"1141\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\" data-select2-id=\\"1142\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\" data-select2-id=\\"1143\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"3172\\" style=\\"width: 143.688px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-2b-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-2b-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"3062\\">\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" data-select2-id=\\"765\\" tabindex=\\"-1\\" aria-hidden=\\"true\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"767\\">==</option>\\r\\n <option value=\\"!=\\" data-select2-id=\\"3069\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"3173\\" style=\\"width: 62.8875px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-fb-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-fb-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\" data-select2-id=\\"1171\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" data-select2-id=\\"1147\\" tabindex=\\"-1\\" class=\\"w-100 select2-hidden-accessible\\" aria-hidden=\\"true\\"><option value=\\"5\\" data-select2-id=\\"1149\\">Intern Casual Leave</option><option value=\\"4\\" data-select2-id=\\"1173\\">Casual Leave</option><option value=\\"3\\" data-select2-id=\\"1174\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default select2-container--above\\" dir=\\"ltr\\" data-select2-id=\\"3174\\" style=\\"width: 185.587px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-s7-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-s7-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Casual Leave\\">Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"3075\\">\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" data-select2-id=\\"768\\" tabindex=\\"-1\\" aria-hidden=\\"true\\">\\r\\n <option value=\\"and\\" data-select2-id=\\"770\\">And</option>\\r\\n <option value=\\"or\\" data-select2-id=\\"3076\\" selected=\\"selected\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default select2-container--below\\" dir=\\"ltr\\" data-select2-id=\\"3175\\" style=\\"width: 52.875px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-c0-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-c0-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Or\\">Or</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr></tbody></table>", "<table id=\\"multipleConditionTable\\" data-select2-id=\\"multipleConditionTable\\">\\r\\n <tbody data-select2-id=\\"1053\\"><tr>\\r\\n <th>Code</th>\\r\\n <th>Field</th>\\r\\n <th>Condition</th>\\r\\n <th>Value</th>\\r\\n <th>Logic</th>\\r\\n <th>\\r\\n Action\\r\\n <span title=\\"Reload\\" onclick=\\"$('[name=model]').change()\\">\\r\\n <ion-icon name=\\"refresh-circle\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"refresh circle\\"></ion-icon>\\r\\n </span>\\r\\n </th>\\r\\n </tr>\\r\\n <tr class=\\"dynamic-condition-row\\" data-select2-id=\\"3072\\">\\r\\n <td class=\\"sn\\">C1</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\" data-select2-id=\\"1150\\"><option value=\\"automation_multiple_is_active\\">Is Active</option><option value=\\"automation_multiple_employee_id\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" selected=\\"selected\\" data-select2-id=\\"1152\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\">Description</option><option value=\\"automation_multiple_attachment\\">Attachment</option><option value=\\"automation_multiple_status\\">Status</option><option value=\\"automation_multiple_requested_date\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1\\" style=\\"width: 126.225px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-ul-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-ul-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1154\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"1156\\">==</option>\\r\\n <option value=\\"!=\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"2\\" style=\\"width: 59.7125px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-32-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-32-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" tabindex=\\"-1\\" class=\\"select2-hidden-accessible\\" aria-hidden=\\"true\\" data-select2-id=\\"1159\\"><option value=\\"5\\" data-select2-id=\\"1161\\">Intern Casual Leave</option><option value=\\"4\\">Casual Leave</option><option value=\\"3\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"3\\" style=\\"width: 176.8px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-0c-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-0c-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Intern Casual Leave\\">Intern Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"3071\\">\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1163\\">\\r\\n <option value=\\"and\\" data-select2-id=\\"1165\\" selected=\\"selected\\">And</option>\\r\\n <option value=\\"or\\" data-select2-id=\\"3073\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"4\\" style=\\"width: 38.2875px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-9c-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-9c-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"And\\">And</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr>\\r\\n \\r\\n \\r\\n \\r\\n <tr class=\\"dynamic-condition-row\\" data-select2-id=\\"1172\\">\\r\\n <td class=\\"sn\\">C2</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" data-select2-id=\\"762\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\"><option value=\\"automation_multiple_is_active\\" data-select2-id=\\"764\\">Is Active</option><option value=\\"automation_multiple_employee_id\\" data-select2-id=\\"1057\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\" data-select2-id=\\"1058\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\" data-select2-id=\\"1059\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\" data-select2-id=\\"1060\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\" data-select2-id=\\"1061\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\" data-select2-id=\\"1062\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\" data-select2-id=\\"1063\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\" data-select2-id=\\"1064\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\" data-select2-id=\\"1065\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\" data-select2-id=\\"1066\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\" data-select2-id=\\"1067\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\" data-select2-id=\\"1068\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\" data-select2-id=\\"1069\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\" data-select2-id=\\"1070\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\" data-select2-id=\\"1071\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\" data-select2-id=\\"1072\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\" data-select2-id=\\"1073\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\" data-select2-id=\\"1074\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\" data-select2-id=\\"1075\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\" data-select2-id=\\"1076\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\" data-select2-id=\\"1077\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\" data-select2-id=\\"1078\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\" data-select2-id=\\"1079\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\" data-select2-id=\\"1080\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" data-select2-id=\\"1081\\" selected=\\"selected\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\" data-select2-id=\\"1082\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\" data-select2-id=\\"1083\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\" data-select2-id=\\"1084\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\" data-select2-id=\\"1085\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\" data-select2-id=\\"1086\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\" data-select2-id=\\"1087\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\" data-select2-id=\\"1088\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\" data-select2-id=\\"1089\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\" data-select2-id=\\"1090\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\" data-select2-id=\\"1091\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\" data-select2-id=\\"1092\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\" data-select2-id=\\"1093\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\" data-select2-id=\\"1094\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\" data-select2-id=\\"1095\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\" data-select2-id=\\"1096\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\" data-select2-id=\\"1097\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\" data-select2-id=\\"1098\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\" data-select2-id=\\"1099\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\" data-select2-id=\\"1100\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\" data-select2-id=\\"1101\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\" data-select2-id=\\"1102\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\" data-select2-id=\\"1103\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\" data-select2-id=\\"1104\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\" data-select2-id=\\"1105\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\" data-select2-id=\\"1106\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\" data-select2-id=\\"1107\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\" data-select2-id=\\"1108\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\" data-select2-id=\\"1109\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\" data-select2-id=\\"1110\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\" data-select2-id=\\"1111\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\" data-select2-id=\\"1112\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\" data-select2-id=\\"1113\\">Description</option><option value=\\"automation_multiple_attachment\\" data-select2-id=\\"1114\\">Attachment</option><option value=\\"automation_multiple_status\\" data-select2-id=\\"1115\\">Status</option><option value=\\"automation_multiple_requested_date\\" data-select2-id=\\"1116\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\" data-select2-id=\\"1117\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\" data-select2-id=\\"1118\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\" data-select2-id=\\"1119\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\" data-select2-id=\\"1120\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\" data-select2-id=\\"1121\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\" data-select2-id=\\"1122\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\" data-select2-id=\\"1123\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\" data-select2-id=\\"1124\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\" data-select2-id=\\"1125\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\" data-select2-id=\\"1126\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\" data-select2-id=\\"1127\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\" data-select2-id=\\"1128\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\" data-select2-id=\\"1129\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\" data-select2-id=\\"1130\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\" data-select2-id=\\"1131\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\" data-select2-id=\\"1132\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\" data-select2-id=\\"1133\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\" data-select2-id=\\"1134\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\" data-select2-id=\\"1135\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\" data-select2-id=\\"1136\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\" data-select2-id=\\"1137\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\" data-select2-id=\\"1138\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\" data-select2-id=\\"1139\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\" data-select2-id=\\"1140\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\" data-select2-id=\\"1141\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\" data-select2-id=\\"1142\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\" data-select2-id=\\"1143\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"5\\" style=\\"width: 137.262px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-pb-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-pb-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"3062\\">\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" data-select2-id=\\"765\\" tabindex=\\"-1\\" aria-hidden=\\"true\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"767\\">==</option>\\r\\n <option value=\\"!=\\" data-select2-id=\\"3069\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"6\\" style=\\"width: 62.0625px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-8a-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-8a-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\" data-select2-id=\\"1171\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" data-select2-id=\\"1147\\" tabindex=\\"-1\\" class=\\"w-100 select2-hidden-accessible\\" aria-hidden=\\"true\\"><option value=\\"5\\" data-select2-id=\\"1149\\">Intern Casual Leave</option><option value=\\"4\\" data-select2-id=\\"1173\\">Casual Leave</option><option value=\\"3\\" data-select2-id=\\"1174\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default select2-container--below\\" dir=\\"ltr\\" data-select2-id=\\"7\\" style=\\"width: 183.288px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-pg-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-pg-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Casual Leave\\">Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"3075\\">\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" data-select2-id=\\"768\\" tabindex=\\"-1\\" aria-hidden=\\"true\\">\\r\\n <option value=\\"and\\" data-select2-id=\\"770\\" selected=\\"selected\\">And</option>\\r\\n <option value=\\"or\\" data-select2-id=\\"3076\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default select2-container--below\\" dir=\\"ltr\\" data-select2-id=\\"8\\" style=\\"width: 58.7375px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-pe-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-pe-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"And\\">And</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr></tbody></table>"], "condition_querystring": ["automation_multiple_condition=automation_multiple_leave_type_id&condition=%3D%3D&automation_multiple_condition=5&logic=and&automation_multiple_condition=automation_multiple_leave_type_id&condition=%3D%3D&automation_multiple_condition=4&logic=or", "automation_multiple_condition=automation_multiple_leave_type_id&condition=%3D%3D&automation_multiple_condition=5&logic=and&automation_multiple_condition=automation_multiple_leave_type_id&condition=%3D%3D&automation_multiple_condition=4&logic=and"]} 2025-02-03 10:34:25.898804+00 273 193 122.176.134.248 \N \N \N
4862 3 3 Leave Request 1 {"condition": ["<form id=\\"multipleConditionForm\\" data-select2-id=\\"multipleConditionForm\\"><table id=\\"multipleConditionTable\\" data-select2-id=\\"multipleConditionTable\\">\\r\\n <tbody data-select2-id=\\"1053\\"><tr>\\r\\n <th>Code</th>\\r\\n <th>Field</th>\\r\\n <th>Condition</th>\\r\\n <th>Value</th>\\r\\n <th>Logic</th>\\r\\n <th>\\r\\n Action\\r\\n <span title=\\"Reload\\" onclick=\\"$('[name=model]').change()\\">\\r\\n <ion-icon name=\\"refresh-circle\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"refresh circle\\"></ion-icon>\\r\\n </span>\\r\\n </th>\\r\\n </tr>\\r\\n <tr class=\\"dynamic-condition-row\\" data-select2-id=\\"3072\\">\\r\\n <td class=\\"sn\\">C1</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\" data-select2-id=\\"1150\\"><option value=\\"automation_multiple_is_active\\">Is Active</option><option value=\\"automation_multiple_employee_id\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" selected=\\"selected\\" data-select2-id=\\"1152\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\">Description</option><option value=\\"automation_multiple_attachment\\">Attachment</option><option value=\\"automation_multiple_status\\">Status</option><option value=\\"automation_multiple_requested_date\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1\\" style=\\"width: 126.225px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-ul-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-ul-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1154\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"1156\\">==</option>\\r\\n <option value=\\"!=\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"2\\" style=\\"width: 59.7125px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-32-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-32-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" tabindex=\\"-1\\" class=\\"select2-hidden-accessible\\" aria-hidden=\\"true\\" data-select2-id=\\"1159\\"><option value=\\"5\\" data-select2-id=\\"1161\\">Intern Casual Leave</option><option value=\\"4\\">Casual Leave</option><option value=\\"3\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"3\\" style=\\"width: 176.8px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-0c-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-0c-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Intern Casual Leave\\">Intern Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"3071\\">\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1163\\">\\r\\n <option value=\\"and\\" data-select2-id=\\"1165\\" selected=\\"selected\\">And</option>\\r\\n <option value=\\"or\\" data-select2-id=\\"3073\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"4\\" style=\\"width: 38.2875px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-9c-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-9c-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"And\\">And</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr>\\r\\n \\r\\n \\r\\n \\r\\n <tr class=\\"dynamic-condition-row\\" data-select2-id=\\"1172\\">\\r\\n <td class=\\"sn\\">C2</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" data-select2-id=\\"762\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\"><option value=\\"automation_multiple_is_active\\" data-select2-id=\\"764\\">Is Active</option><option value=\\"automation_multiple_employee_id\\" data-select2-id=\\"1057\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\" data-select2-id=\\"1058\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\" data-select2-id=\\"1059\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\" data-select2-id=\\"1060\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\" data-select2-id=\\"1061\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\" data-select2-id=\\"1062\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\" data-select2-id=\\"1063\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\" data-select2-id=\\"1064\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\" data-select2-id=\\"1065\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\" data-select2-id=\\"1066\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\" data-select2-id=\\"1067\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\" data-select2-id=\\"1068\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\" data-select2-id=\\"1069\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\" data-select2-id=\\"1070\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\" data-select2-id=\\"1071\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\" data-select2-id=\\"1072\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\" data-select2-id=\\"1073\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\" data-select2-id=\\"1074\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\" data-select2-id=\\"1075\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\" data-select2-id=\\"1076\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\" data-select2-id=\\"1077\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\" data-select2-id=\\"1078\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\" data-select2-id=\\"1079\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\" data-select2-id=\\"1080\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" data-select2-id=\\"1081\\" selected=\\"selected\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\" data-select2-id=\\"1082\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\" data-select2-id=\\"1083\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\" data-select2-id=\\"1084\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\" data-select2-id=\\"1085\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\" data-select2-id=\\"1086\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\" data-select2-id=\\"1087\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\" data-select2-id=\\"1088\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\" data-select2-id=\\"1089\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\" data-select2-id=\\"1090\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\" data-select2-id=\\"1091\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\" data-select2-id=\\"1092\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\" data-select2-id=\\"1093\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\" data-select2-id=\\"1094\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\" data-select2-id=\\"1095\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\" data-select2-id=\\"1096\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\" data-select2-id=\\"1097\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\" data-select2-id=\\"1098\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\" data-select2-id=\\"1099\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\" data-select2-id=\\"1100\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\" data-select2-id=\\"1101\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\" data-select2-id=\\"1102\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\" data-select2-id=\\"1103\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\" data-select2-id=\\"1104\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\" data-select2-id=\\"1105\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\" data-select2-id=\\"1106\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\" data-select2-id=\\"1107\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\" data-select2-id=\\"1108\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\" data-select2-id=\\"1109\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\" data-select2-id=\\"1110\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\" data-select2-id=\\"1111\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\" data-select2-id=\\"1112\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\" data-select2-id=\\"1113\\">Description</option><option value=\\"automation_multiple_attachment\\" data-select2-id=\\"1114\\">Attachment</option><option value=\\"automation_multiple_status\\" data-select2-id=\\"1115\\">Status</option><option value=\\"automation_multiple_requested_date\\" data-select2-id=\\"1116\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\" data-select2-id=\\"1117\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\" data-select2-id=\\"1118\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\" data-select2-id=\\"1119\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\" data-select2-id=\\"1120\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\" data-select2-id=\\"1121\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\" data-select2-id=\\"1122\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\" data-select2-id=\\"1123\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\" data-select2-id=\\"1124\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\" data-select2-id=\\"1125\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\" data-select2-id=\\"1126\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\" data-select2-id=\\"1127\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\" data-select2-id=\\"1128\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\" data-select2-id=\\"1129\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\" data-select2-id=\\"1130\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\" data-select2-id=\\"1131\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\" data-select2-id=\\"1132\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\" data-select2-id=\\"1133\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\" data-select2-id=\\"1134\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\" data-select2-id=\\"1135\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\" data-select2-id=\\"1136\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\" data-select2-id=\\"1137\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\" data-select2-id=\\"1138\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\" data-select2-id=\\"1139\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\" data-select2-id=\\"1140\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\" data-select2-id=\\"1141\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\" data-select2-id=\\"1142\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\" data-select2-id=\\"1143\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"5\\" style=\\"width: 137.262px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-pb-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-pb-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"3062\\">\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" data-select2-id=\\"765\\" tabindex=\\"-1\\" aria-hidden=\\"true\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"767\\">==</option>\\r\\n <option value=\\"!=\\" data-select2-id=\\"3069\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"6\\" style=\\"width: 62.0625px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-8a-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-8a-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\" data-select2-id=\\"1171\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" data-select2-id=\\"1147\\" tabindex=\\"-1\\" class=\\"w-100 select2-hidden-accessible\\" aria-hidden=\\"true\\"><option value=\\"5\\" data-select2-id=\\"1149\\">Intern Casual Leave</option><option value=\\"4\\" data-select2-id=\\"1173\\">Casual Leave</option><option value=\\"3\\" data-select2-id=\\"1174\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default select2-container--below\\" dir=\\"ltr\\" data-select2-id=\\"7\\" style=\\"width: 183.288px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-pg-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-pg-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Casual Leave\\">Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"3075\\">\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" data-select2-id=\\"768\\" tabindex=\\"-1\\" aria-hidden=\\"true\\">\\r\\n <option value=\\"and\\" data-select2-id=\\"770\\" selected=\\"selected\\">And</option>\\r\\n <option value=\\"or\\" data-select2-id=\\"3076\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default select2-container--below select2-container--focus\\" dir=\\"ltr\\" data-select2-id=\\"8\\" style=\\"width: 58.7375px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-pe-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-pe-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"And\\">And</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr></tbody></table></form>", "<form id=\\"multipleConditionForm\\" data-select2-id=\\"multipleConditionForm\\"><table id=\\"multipleConditionTable\\" data-select2-id=\\"multipleConditionTable\\">\\r\\n <tbody data-select2-id=\\"1053\\"><tr>\\r\\n <th>Code</th>\\r\\n <th>Field</th>\\r\\n <th>Condition</th>\\r\\n <th>Value</th>\\r\\n <th>Logic</th>\\r\\n <th>\\r\\n Action\\r\\n <span title=\\"Reload\\" onclick=\\"$('[name=model]').change()\\">\\r\\n <ion-icon name=\\"refresh-circle\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"refresh circle\\"></ion-icon>\\r\\n </span>\\r\\n </th>\\r\\n </tr>\\r\\n <tr class=\\"dynamic-condition-row\\" data-select2-id=\\"3072\\">\\r\\n <td class=\\"sn\\">C1</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\" data-select2-id=\\"1883\\"><option value=\\"automation_multiple_is_active\\">Is Active</option><option value=\\"automation_multiple_employee_id\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" selected=\\"selected\\" data-select2-id=\\"1885\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\">Description</option><option value=\\"automation_multiple_attachment\\">Attachment</option><option value=\\"automation_multiple_status\\">Status</option><option value=\\"automation_multiple_requested_date\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1884\\" style=\\"width: 110.713px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-su-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-su-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1887\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"1889\\">==</option>\\r\\n <option value=\\"!=\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1888\\" style=\\"width: 59.7125px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-ys-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-ys-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" tabindex=\\"-1\\" class=\\"select2-hidden-accessible\\" aria-hidden=\\"true\\" data-select2-id=\\"1892\\"><option value=\\"5\\" data-select2-id=\\"1894\\">Intern Casual Leave</option><option value=\\"4\\">Casual Leave</option><option value=\\"3\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1893\\" style=\\"width: 176.8px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-jc-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-jc-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Intern Casual Leave\\">Intern Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"3071\\">\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1895\\">\\r\\n <option value=\\"and\\" selected=\\"selected\\" data-select2-id=\\"1897\\">And</option>\\r\\n <option value=\\"or\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1896\\" style=\\"width: 36.875px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-u9-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-u9-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"And\\">And</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr>\\r\\n \\r\\n \\r\\n \\r\\n <tr class=\\"dynamic-condition-row\\" data-select2-id=\\"3072\\">\\r\\n <td class=\\"sn\\">C2</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\" data-select2-id=\\"1150\\"><option value=\\"automation_multiple_is_active\\" data-select2-id=\\"1906\\">Is Active</option><option value=\\"automation_multiple_employee_id\\" data-select2-id=\\"1907\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\" data-select2-id=\\"1908\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\" data-select2-id=\\"1909\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\" data-select2-id=\\"1910\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\" data-select2-id=\\"1911\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\" data-select2-id=\\"1912\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\" data-select2-id=\\"1913\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\" data-select2-id=\\"1914\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\" data-select2-id=\\"1915\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\" data-select2-id=\\"1916\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\" data-select2-id=\\"1917\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\" data-select2-id=\\"1918\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\" data-select2-id=\\"1919\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\" data-select2-id=\\"1920\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\" data-select2-id=\\"1921\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\" data-select2-id=\\"1922\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\" data-select2-id=\\"1923\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\" data-select2-id=\\"1924\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\" data-select2-id=\\"1925\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\" data-select2-id=\\"1926\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\" data-select2-id=\\"1927\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\" data-select2-id=\\"1928\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\" data-select2-id=\\"1929\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\" data-select2-id=\\"1930\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" selected=\\"selected\\" data-select2-id=\\"1152\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\" data-select2-id=\\"1931\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\" data-select2-id=\\"1932\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\" data-select2-id=\\"1933\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\" data-select2-id=\\"1934\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\" data-select2-id=\\"1935\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\" data-select2-id=\\"1936\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\" data-select2-id=\\"1937\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\" data-select2-id=\\"1938\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\" data-select2-id=\\"1939\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\" data-select2-id=\\"1940\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\" data-select2-id=\\"1941\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\" data-select2-id=\\"1942\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\" data-select2-id=\\"1943\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\" data-select2-id=\\"1944\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\" data-select2-id=\\"1945\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\" data-select2-id=\\"1946\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\" data-select2-id=\\"1947\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\" data-select2-id=\\"1948\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\" data-select2-id=\\"1949\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\" data-select2-id=\\"1950\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\" data-select2-id=\\"1951\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\" data-select2-id=\\"1952\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\" data-select2-id=\\"1953\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\" data-select2-id=\\"1954\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\" data-select2-id=\\"1955\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\" data-select2-id=\\"1956\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\" data-select2-id=\\"1957\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\" data-select2-id=\\"1958\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\" data-select2-id=\\"1959\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\" data-select2-id=\\"1960\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\" data-select2-id=\\"1961\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\" data-select2-id=\\"1962\\">Description</option><option value=\\"automation_multiple_attachment\\" data-select2-id=\\"1963\\">Attachment</option><option value=\\"automation_multiple_status\\" data-select2-id=\\"1964\\">Status</option><option value=\\"automation_multiple_requested_date\\" data-select2-id=\\"1965\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\" data-select2-id=\\"1966\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\" data-select2-id=\\"1967\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\" data-select2-id=\\"1968\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\" data-select2-id=\\"1969\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\" data-select2-id=\\"1970\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\" data-select2-id=\\"1971\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\" data-select2-id=\\"1972\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\" data-select2-id=\\"1973\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\" data-select2-id=\\"1974\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\" data-select2-id=\\"1975\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\" data-select2-id=\\"1976\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\" data-select2-id=\\"1977\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\" data-select2-id=\\"1978\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\" data-select2-id=\\"1979\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\" data-select2-id=\\"1980\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\" data-select2-id=\\"1981\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\" data-select2-id=\\"1982\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\" data-select2-id=\\"1983\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\" data-select2-id=\\"1984\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\" data-select2-id=\\"1985\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\" data-select2-id=\\"1986\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\" data-select2-id=\\"1987\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\" data-select2-id=\\"1988\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\" data-select2-id=\\"1989\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\" data-select2-id=\\"1990\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\" data-select2-id=\\"1991\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\" data-select2-id=\\"1992\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default select2-container--above\\" dir=\\"ltr\\" data-select2-id=\\"1898\\" style=\\"width: 117.9px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-px-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-px-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1154\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"1156\\">==</option>\\r\\n <option value=\\"!=\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1899\\" style=\\"width: 59.7125px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-oq-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-oq-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\" data-select2-id=\\"1995\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" tabindex=\\"-1\\" class=\\"w-100 select2-hidden-accessible\\" aria-hidden=\\"true\\" data-select2-id=\\"1159\\"><option value=\\"5\\" data-select2-id=\\"1161\\">Intern Casual Leave</option><option value=\\"4\\" data-select2-id=\\"1996\\">Casual Leave</option><option value=\\"3\\" data-select2-id=\\"1997\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default select2-container--below select2-container--focus\\" dir=\\"ltr\\" data-select2-id=\\"1900\\" style=\\"width: 171.163px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-5g-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-5g-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Casual Leave\\">Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"3071\\">\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1163\\">\\r\\n <option value=\\"and\\" data-select2-id=\\"1165\\" selected=\\"selected\\">And</option>\\r\\n <option value=\\"or\\" data-select2-id=\\"3073\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1901\\" style=\\"width: 55.6125px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-vj-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-vj-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"And\\">And</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr></tbody></table></form>"], "condition_html": ["<table id=\\"multipleConditionTable\\" data-select2-id=\\"multipleConditionTable\\">\\r\\n <tbody data-select2-id=\\"1053\\"><tr>\\r\\n <th>Code</th>\\r\\n <th>Field</th>\\r\\n <th>Condition</th>\\r\\n <th>Value</th>\\r\\n <th>Logic</th>\\r\\n <th>\\r\\n Action\\r\\n <span title=\\"Reload\\" onclick=\\"$('[name=model]').change()\\">\\r\\n <ion-icon name=\\"refresh-circle\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"refresh circle\\"></ion-icon>\\r\\n </span>\\r\\n </th>\\r\\n </tr>\\r\\n <tr class=\\"dynamic-condition-row\\" data-select2-id=\\"3072\\">\\r\\n <td class=\\"sn\\">C1</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\" data-select2-id=\\"1150\\"><option value=\\"automation_multiple_is_active\\">Is Active</option><option value=\\"automation_multiple_employee_id\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" selected=\\"selected\\" data-select2-id=\\"1152\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\">Description</option><option value=\\"automation_multiple_attachment\\">Attachment</option><option value=\\"automation_multiple_status\\">Status</option><option value=\\"automation_multiple_requested_date\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1\\" style=\\"width: 126.225px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-ul-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-ul-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1154\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"1156\\">==</option>\\r\\n <option value=\\"!=\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"2\\" style=\\"width: 59.7125px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-32-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-32-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" tabindex=\\"-1\\" class=\\"select2-hidden-accessible\\" aria-hidden=\\"true\\" data-select2-id=\\"1159\\"><option value=\\"5\\" data-select2-id=\\"1161\\">Intern Casual Leave</option><option value=\\"4\\">Casual Leave</option><option value=\\"3\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"3\\" style=\\"width: 176.8px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-0c-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-0c-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Intern Casual Leave\\">Intern Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"3071\\">\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1163\\">\\r\\n <option value=\\"and\\" data-select2-id=\\"1165\\" selected=\\"selected\\">And</option>\\r\\n <option value=\\"or\\" data-select2-id=\\"3073\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"4\\" style=\\"width: 38.2875px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-9c-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-9c-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"And\\">And</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr>\\r\\n \\r\\n \\r\\n \\r\\n <tr class=\\"dynamic-condition-row\\" data-select2-id=\\"1172\\">\\r\\n <td class=\\"sn\\">C2</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" data-select2-id=\\"762\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\"><option value=\\"automation_multiple_is_active\\" data-select2-id=\\"764\\">Is Active</option><option value=\\"automation_multiple_employee_id\\" data-select2-id=\\"1057\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\" data-select2-id=\\"1058\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\" data-select2-id=\\"1059\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\" data-select2-id=\\"1060\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\" data-select2-id=\\"1061\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\" data-select2-id=\\"1062\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\" data-select2-id=\\"1063\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\" data-select2-id=\\"1064\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\" data-select2-id=\\"1065\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\" data-select2-id=\\"1066\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\" data-select2-id=\\"1067\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\" data-select2-id=\\"1068\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\" data-select2-id=\\"1069\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\" data-select2-id=\\"1070\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\" data-select2-id=\\"1071\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\" data-select2-id=\\"1072\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\" data-select2-id=\\"1073\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\" data-select2-id=\\"1074\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\" data-select2-id=\\"1075\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\" data-select2-id=\\"1076\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\" data-select2-id=\\"1077\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\" data-select2-id=\\"1078\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\" data-select2-id=\\"1079\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\" data-select2-id=\\"1080\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" data-select2-id=\\"1081\\" selected=\\"selected\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\" data-select2-id=\\"1082\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\" data-select2-id=\\"1083\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\" data-select2-id=\\"1084\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\" data-select2-id=\\"1085\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\" data-select2-id=\\"1086\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\" data-select2-id=\\"1087\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\" data-select2-id=\\"1088\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\" data-select2-id=\\"1089\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\" data-select2-id=\\"1090\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\" data-select2-id=\\"1091\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\" data-select2-id=\\"1092\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\" data-select2-id=\\"1093\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\" data-select2-id=\\"1094\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\" data-select2-id=\\"1095\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\" data-select2-id=\\"1096\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\" data-select2-id=\\"1097\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\" data-select2-id=\\"1098\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\" data-select2-id=\\"1099\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\" data-select2-id=\\"1100\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\" data-select2-id=\\"1101\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\" data-select2-id=\\"1102\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\" data-select2-id=\\"1103\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\" data-select2-id=\\"1104\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\" data-select2-id=\\"1105\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\" data-select2-id=\\"1106\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\" data-select2-id=\\"1107\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\" data-select2-id=\\"1108\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\" data-select2-id=\\"1109\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\" data-select2-id=\\"1110\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\" data-select2-id=\\"1111\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\" data-select2-id=\\"1112\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\" data-select2-id=\\"1113\\">Description</option><option value=\\"automation_multiple_attachment\\" data-select2-id=\\"1114\\">Attachment</option><option value=\\"automation_multiple_status\\" data-select2-id=\\"1115\\">Status</option><option value=\\"automation_multiple_requested_date\\" data-select2-id=\\"1116\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\" data-select2-id=\\"1117\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\" data-select2-id=\\"1118\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\" data-select2-id=\\"1119\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\" data-select2-id=\\"1120\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\" data-select2-id=\\"1121\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\" data-select2-id=\\"1122\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\" data-select2-id=\\"1123\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\" data-select2-id=\\"1124\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\" data-select2-id=\\"1125\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\" data-select2-id=\\"1126\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\" data-select2-id=\\"1127\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\" data-select2-id=\\"1128\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\" data-select2-id=\\"1129\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\" data-select2-id=\\"1130\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\" data-select2-id=\\"1131\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\" data-select2-id=\\"1132\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\" data-select2-id=\\"1133\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\" data-select2-id=\\"1134\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\" data-select2-id=\\"1135\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\" data-select2-id=\\"1136\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\" data-select2-id=\\"1137\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\" data-select2-id=\\"1138\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\" data-select2-id=\\"1139\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\" data-select2-id=\\"1140\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\" data-select2-id=\\"1141\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\" data-select2-id=\\"1142\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\" data-select2-id=\\"1143\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"5\\" style=\\"width: 137.262px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-pb-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-pb-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"3062\\">\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" data-select2-id=\\"765\\" tabindex=\\"-1\\" aria-hidden=\\"true\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"767\\">==</option>\\r\\n <option value=\\"!=\\" data-select2-id=\\"3069\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"6\\" style=\\"width: 62.0625px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-8a-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-8a-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\" data-select2-id=\\"1171\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" data-select2-id=\\"1147\\" tabindex=\\"-1\\" class=\\"w-100 select2-hidden-accessible\\" aria-hidden=\\"true\\"><option value=\\"5\\" data-select2-id=\\"1149\\">Intern Casual Leave</option><option value=\\"4\\" data-select2-id=\\"1173\\">Casual Leave</option><option value=\\"3\\" data-select2-id=\\"1174\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default select2-container--below\\" dir=\\"ltr\\" data-select2-id=\\"7\\" style=\\"width: 183.288px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-pg-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-pg-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Casual Leave\\">Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"3075\\">\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" data-select2-id=\\"768\\" tabindex=\\"-1\\" aria-hidden=\\"true\\">\\r\\n <option value=\\"and\\" data-select2-id=\\"770\\" selected=\\"selected\\">And</option>\\r\\n <option value=\\"or\\" data-select2-id=\\"3076\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default select2-container--below\\" dir=\\"ltr\\" data-select2-id=\\"8\\" style=\\"width: 58.7375px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-pe-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-pe-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"And\\">And</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr></tbody></table>", "<table id=\\"multipleConditionTable\\" data-select2-id=\\"multipleConditionTable\\">\\r\\n <tbody data-select2-id=\\"1053\\"><tr>\\r\\n <th>Code</th>\\r\\n <th>Field</th>\\r\\n <th>Condition</th>\\r\\n <th>Value</th>\\r\\n <th>Logic</th>\\r\\n <th>\\r\\n Action\\r\\n <span title=\\"Reload\\" onclick=\\"$('[name=model]').change()\\">\\r\\n <ion-icon name=\\"refresh-circle\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"refresh circle\\"></ion-icon>\\r\\n </span>\\r\\n </th>\\r\\n </tr>\\r\\n <tr class=\\"dynamic-condition-row\\" data-select2-id=\\"3072\\">\\r\\n <td class=\\"sn\\">C1</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\" data-select2-id=\\"1883\\"><option value=\\"automation_multiple_is_active\\">Is Active</option><option value=\\"automation_multiple_employee_id\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" selected=\\"selected\\" data-select2-id=\\"1885\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\">Description</option><option value=\\"automation_multiple_attachment\\">Attachment</option><option value=\\"automation_multiple_status\\">Status</option><option value=\\"automation_multiple_requested_date\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1884\\" style=\\"width: 110.713px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-su-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-su-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1887\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"1889\\">==</option>\\r\\n <option value=\\"!=\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1888\\" style=\\"width: 59.7125px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-ys-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-ys-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" tabindex=\\"-1\\" class=\\"select2-hidden-accessible\\" aria-hidden=\\"true\\" data-select2-id=\\"1892\\"><option value=\\"5\\" data-select2-id=\\"1894\\">Intern Casual Leave</option><option value=\\"4\\">Casual Leave</option><option value=\\"3\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1893\\" style=\\"width: 176.8px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-jc-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-jc-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Intern Casual Leave\\">Intern Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"3071\\">\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1895\\">\\r\\n <option value=\\"and\\" selected=\\"selected\\" data-select2-id=\\"1897\\">And</option>\\r\\n <option value=\\"or\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1896\\" style=\\"width: 36.875px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-u9-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-u9-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"And\\">And</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr>\\r\\n \\r\\n \\r\\n \\r\\n <tr class=\\"dynamic-condition-row\\" data-select2-id=\\"3072\\">\\r\\n <td class=\\"sn\\">C2</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\" data-select2-id=\\"1150\\"><option value=\\"automation_multiple_is_active\\" data-select2-id=\\"1906\\">Is Active</option><option value=\\"automation_multiple_employee_id\\" data-select2-id=\\"1907\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\" data-select2-id=\\"1908\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\" data-select2-id=\\"1909\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\" data-select2-id=\\"1910\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\" data-select2-id=\\"1911\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\" data-select2-id=\\"1912\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\" data-select2-id=\\"1913\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\" data-select2-id=\\"1914\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\" data-select2-id=\\"1915\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\" data-select2-id=\\"1916\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\" data-select2-id=\\"1917\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\" data-select2-id=\\"1918\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\" data-select2-id=\\"1919\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\" data-select2-id=\\"1920\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\" data-select2-id=\\"1921\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\" data-select2-id=\\"1922\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\" data-select2-id=\\"1923\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\" data-select2-id=\\"1924\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\" data-select2-id=\\"1925\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\" data-select2-id=\\"1926\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\" data-select2-id=\\"1927\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\" data-select2-id=\\"1928\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\" data-select2-id=\\"1929\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\" data-select2-id=\\"1930\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" selected=\\"selected\\" data-select2-id=\\"1152\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\" data-select2-id=\\"1931\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\" data-select2-id=\\"1932\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\" data-select2-id=\\"1933\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\" data-select2-id=\\"1934\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\" data-select2-id=\\"1935\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\" data-select2-id=\\"1936\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\" data-select2-id=\\"1937\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\" data-select2-id=\\"1938\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\" data-select2-id=\\"1939\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\" data-select2-id=\\"1940\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\" data-select2-id=\\"1941\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\" data-select2-id=\\"1942\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\" data-select2-id=\\"1943\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\" data-select2-id=\\"1944\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\" data-select2-id=\\"1945\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\" data-select2-id=\\"1946\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\" data-select2-id=\\"1947\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\" data-select2-id=\\"1948\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\" data-select2-id=\\"1949\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\" data-select2-id=\\"1950\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\" data-select2-id=\\"1951\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\" data-select2-id=\\"1952\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\" data-select2-id=\\"1953\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\" data-select2-id=\\"1954\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\" data-select2-id=\\"1955\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\" data-select2-id=\\"1956\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\" data-select2-id=\\"1957\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\" data-select2-id=\\"1958\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\" data-select2-id=\\"1959\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\" data-select2-id=\\"1960\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\" data-select2-id=\\"1961\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\" data-select2-id=\\"1962\\">Description</option><option value=\\"automation_multiple_attachment\\" data-select2-id=\\"1963\\">Attachment</option><option value=\\"automation_multiple_status\\" data-select2-id=\\"1964\\">Status</option><option value=\\"automation_multiple_requested_date\\" data-select2-id=\\"1965\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\" data-select2-id=\\"1966\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\" data-select2-id=\\"1967\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\" data-select2-id=\\"1968\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\" data-select2-id=\\"1969\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\" data-select2-id=\\"1970\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\" data-select2-id=\\"1971\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\" data-select2-id=\\"1972\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\" data-select2-id=\\"1973\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\" data-select2-id=\\"1974\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\" data-select2-id=\\"1975\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\" data-select2-id=\\"1976\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\" data-select2-id=\\"1977\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\" data-select2-id=\\"1978\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\" data-select2-id=\\"1979\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\" data-select2-id=\\"1980\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\" data-select2-id=\\"1981\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\" data-select2-id=\\"1982\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\" data-select2-id=\\"1983\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\" data-select2-id=\\"1984\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\" data-select2-id=\\"1985\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\" data-select2-id=\\"1986\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\" data-select2-id=\\"1987\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\" data-select2-id=\\"1988\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\" data-select2-id=\\"1989\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\" data-select2-id=\\"1990\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\" data-select2-id=\\"1991\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\" data-select2-id=\\"1992\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default select2-container--above\\" dir=\\"ltr\\" data-select2-id=\\"1898\\" style=\\"width: 117.9px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-px-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-px-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1154\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"1156\\">==</option>\\r\\n <option value=\\"!=\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1899\\" style=\\"width: 59.7125px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-oq-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-oq-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\" data-select2-id=\\"1995\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" tabindex=\\"-1\\" class=\\"w-100 select2-hidden-accessible\\" aria-hidden=\\"true\\" data-select2-id=\\"1159\\"><option value=\\"5\\" data-select2-id=\\"1161\\">Intern Casual Leave</option><option value=\\"4\\" data-select2-id=\\"1996\\">Casual Leave</option><option value=\\"3\\" data-select2-id=\\"1997\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default select2-container--below\\" dir=\\"ltr\\" data-select2-id=\\"1900\\" style=\\"width: 171.163px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-5g-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-5g-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Casual Leave\\">Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"3071\\">\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1163\\">\\r\\n <option value=\\"and\\" data-select2-id=\\"1165\\" selected=\\"selected\\">And</option>\\r\\n <option value=\\"or\\" data-select2-id=\\"3073\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1901\\" style=\\"width: 55.6125px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-vj-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-vj-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"And\\">And</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr></tbody></table>"]} 2025-02-03 10:34:55.900111+00 273 193 122.176.134.248 \N \N \N
4863 3 3 Leave Request 1 {"condition": ["<form id=\\"multipleConditionForm\\" data-select2-id=\\"multipleConditionForm\\"><table id=\\"multipleConditionTable\\" data-select2-id=\\"multipleConditionTable\\">\\r\\n <tbody data-select2-id=\\"1053\\"><tr>\\r\\n <th>Code</th>\\r\\n <th>Field</th>\\r\\n <th>Condition</th>\\r\\n <th>Value</th>\\r\\n <th>Logic</th>\\r\\n <th>\\r\\n Action\\r\\n <span title=\\"Reload\\" onclick=\\"$('[name=model]').change()\\">\\r\\n <ion-icon name=\\"refresh-circle\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"refresh circle\\"></ion-icon>\\r\\n </span>\\r\\n </th>\\r\\n </tr>\\r\\n <tr class=\\"dynamic-condition-row\\" data-select2-id=\\"3072\\">\\r\\n <td class=\\"sn\\">C1</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\" data-select2-id=\\"1883\\"><option value=\\"automation_multiple_is_active\\">Is Active</option><option value=\\"automation_multiple_employee_id\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" selected=\\"selected\\" data-select2-id=\\"1885\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\">Description</option><option value=\\"automation_multiple_attachment\\">Attachment</option><option value=\\"automation_multiple_status\\">Status</option><option value=\\"automation_multiple_requested_date\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1884\\" style=\\"width: 110.713px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-su-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-su-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1887\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"1889\\">==</option>\\r\\n <option value=\\"!=\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1888\\" style=\\"width: 59.7125px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-ys-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-ys-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" tabindex=\\"-1\\" class=\\"select2-hidden-accessible\\" aria-hidden=\\"true\\" data-select2-id=\\"1892\\"><option value=\\"5\\" data-select2-id=\\"1894\\">Intern Casual Leave</option><option value=\\"4\\">Casual Leave</option><option value=\\"3\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1893\\" style=\\"width: 176.8px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-jc-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-jc-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Intern Casual Leave\\">Intern Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"3071\\">\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1895\\">\\r\\n <option value=\\"and\\" selected=\\"selected\\" data-select2-id=\\"1897\\">And</option>\\r\\n <option value=\\"or\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1896\\" style=\\"width: 36.875px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-u9-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-u9-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"And\\">And</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr>\\r\\n \\r\\n \\r\\n \\r\\n <tr class=\\"dynamic-condition-row\\" data-select2-id=\\"3072\\">\\r\\n <td class=\\"sn\\">C2</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\" data-select2-id=\\"1150\\"><option value=\\"automation_multiple_is_active\\" data-select2-id=\\"1906\\">Is Active</option><option value=\\"automation_multiple_employee_id\\" data-select2-id=\\"1907\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\" data-select2-id=\\"1908\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\" data-select2-id=\\"1909\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\" data-select2-id=\\"1910\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\" data-select2-id=\\"1911\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\" data-select2-id=\\"1912\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\" data-select2-id=\\"1913\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\" data-select2-id=\\"1914\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\" data-select2-id=\\"1915\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\" data-select2-id=\\"1916\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\" data-select2-id=\\"1917\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\" data-select2-id=\\"1918\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\" data-select2-id=\\"1919\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\" data-select2-id=\\"1920\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\" data-select2-id=\\"1921\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\" data-select2-id=\\"1922\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\" data-select2-id=\\"1923\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\" data-select2-id=\\"1924\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\" data-select2-id=\\"1925\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\" data-select2-id=\\"1926\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\" data-select2-id=\\"1927\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\" data-select2-id=\\"1928\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\" data-select2-id=\\"1929\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\" data-select2-id=\\"1930\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" selected=\\"selected\\" data-select2-id=\\"1152\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\" data-select2-id=\\"1931\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\" data-select2-id=\\"1932\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\" data-select2-id=\\"1933\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\" data-select2-id=\\"1934\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\" data-select2-id=\\"1935\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\" data-select2-id=\\"1936\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\" data-select2-id=\\"1937\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\" data-select2-id=\\"1938\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\" data-select2-id=\\"1939\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\" data-select2-id=\\"1940\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\" data-select2-id=\\"1941\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\" data-select2-id=\\"1942\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\" data-select2-id=\\"1943\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\" data-select2-id=\\"1944\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\" data-select2-id=\\"1945\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\" data-select2-id=\\"1946\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\" data-select2-id=\\"1947\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\" data-select2-id=\\"1948\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\" data-select2-id=\\"1949\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\" data-select2-id=\\"1950\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\" data-select2-id=\\"1951\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\" data-select2-id=\\"1952\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\" data-select2-id=\\"1953\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\" data-select2-id=\\"1954\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\" data-select2-id=\\"1955\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\" data-select2-id=\\"1956\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\" data-select2-id=\\"1957\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\" data-select2-id=\\"1958\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\" data-select2-id=\\"1959\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\" data-select2-id=\\"1960\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\" data-select2-id=\\"1961\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\" data-select2-id=\\"1962\\">Description</option><option value=\\"automation_multiple_attachment\\" data-select2-id=\\"1963\\">Attachment</option><option value=\\"automation_multiple_status\\" data-select2-id=\\"1964\\">Status</option><option value=\\"automation_multiple_requested_date\\" data-select2-id=\\"1965\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\" data-select2-id=\\"1966\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\" data-select2-id=\\"1967\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\" data-select2-id=\\"1968\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\" data-select2-id=\\"1969\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\" data-select2-id=\\"1970\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\" data-select2-id=\\"1971\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\" data-select2-id=\\"1972\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\" data-select2-id=\\"1973\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\" data-select2-id=\\"1974\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\" data-select2-id=\\"1975\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\" data-select2-id=\\"1976\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\" data-select2-id=\\"1977\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\" data-select2-id=\\"1978\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\" data-select2-id=\\"1979\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\" data-select2-id=\\"1980\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\" data-select2-id=\\"1981\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\" data-select2-id=\\"1982\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\" data-select2-id=\\"1983\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\" data-select2-id=\\"1984\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\" data-select2-id=\\"1985\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\" data-select2-id=\\"1986\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\" data-select2-id=\\"1987\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\" data-select2-id=\\"1988\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\" data-select2-id=\\"1989\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\" data-select2-id=\\"1990\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\" data-select2-id=\\"1991\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\" data-select2-id=\\"1992\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default select2-container--above\\" dir=\\"ltr\\" data-select2-id=\\"1898\\" style=\\"width: 117.9px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-px-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-px-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1154\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"1156\\">==</option>\\r\\n <option value=\\"!=\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1899\\" style=\\"width: 59.7125px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-oq-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-oq-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\" data-select2-id=\\"1995\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" tabindex=\\"-1\\" class=\\"w-100 select2-hidden-accessible\\" aria-hidden=\\"true\\" data-select2-id=\\"1159\\"><option value=\\"5\\" data-select2-id=\\"1161\\">Intern Casual Leave</option><option value=\\"4\\" data-select2-id=\\"1996\\">Casual Leave</option><option value=\\"3\\" data-select2-id=\\"1997\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default select2-container--below select2-container--focus\\" dir=\\"ltr\\" data-select2-id=\\"1900\\" style=\\"width: 171.163px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-5g-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-5g-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Casual Leave\\">Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"3071\\">\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1163\\">\\r\\n <option value=\\"and\\" data-select2-id=\\"1165\\" selected=\\"selected\\">And</option>\\r\\n <option value=\\"or\\" data-select2-id=\\"3073\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1901\\" style=\\"width: 55.6125px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-vj-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-vj-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"And\\">And</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr></tbody></table></form>", "<form id=\\"multipleConditionForm\\">\\r\\n <table id=\\"multipleConditionTable\\">\\r\\n <tbody><tr>\\r\\n <th>Code</th>\\r\\n <th>Field</th>\\r\\n <th>Condition</th>\\r\\n <th>Value</th>\\r\\n <th>Logic</th>\\r\\n <th>\\r\\n Action\\r\\n <span title=\\"Reload\\" onclick=\\"$('[name=model]').change()\\">\\r\\n <ion-icon name=\\"refresh-circle\\"></ion-icon>\\r\\n </span>\\r\\n </th>\\r\\n </tr>\\r\\n </tbody></table>\\r\\n </form>\\r\\n <script>\\r\\n $(\\"#multipleConditionTable\\").closest(\\"[contenteditable=true]\\").removeAttr(\\"contenteditable\\");\\r\\n </script>"], "condition_html": ["<table id=\\"multipleConditionTable\\" data-select2-id=\\"multipleConditionTable\\">\\r\\n <tbody data-select2-id=\\"1053\\"><tr>\\r\\n <th>Code</th>\\r\\n <th>Field</th>\\r\\n <th>Condition</th>\\r\\n <th>Value</th>\\r\\n <th>Logic</th>\\r\\n <th>\\r\\n Action\\r\\n <span title=\\"Reload\\" onclick=\\"$('[name=model]').change()\\">\\r\\n <ion-icon name=\\"refresh-circle\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"refresh circle\\"></ion-icon>\\r\\n </span>\\r\\n </th>\\r\\n </tr>\\r\\n <tr class=\\"dynamic-condition-row\\" data-select2-id=\\"3072\\">\\r\\n <td class=\\"sn\\">C1</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\" data-select2-id=\\"1883\\"><option value=\\"automation_multiple_is_active\\">Is Active</option><option value=\\"automation_multiple_employee_id\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" selected=\\"selected\\" data-select2-id=\\"1885\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\">Description</option><option value=\\"automation_multiple_attachment\\">Attachment</option><option value=\\"automation_multiple_status\\">Status</option><option value=\\"automation_multiple_requested_date\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1884\\" style=\\"width: 110.713px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-su-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-su-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1887\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"1889\\">==</option>\\r\\n <option value=\\"!=\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1888\\" style=\\"width: 59.7125px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-ys-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-ys-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" tabindex=\\"-1\\" class=\\"select2-hidden-accessible\\" aria-hidden=\\"true\\" data-select2-id=\\"1892\\"><option value=\\"5\\" data-select2-id=\\"1894\\">Intern Casual Leave</option><option value=\\"4\\">Casual Leave</option><option value=\\"3\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1893\\" style=\\"width: 176.8px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-jc-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-jc-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Intern Casual Leave\\">Intern Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"3071\\">\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1895\\">\\r\\n <option value=\\"and\\" selected=\\"selected\\" data-select2-id=\\"1897\\">And</option>\\r\\n <option value=\\"or\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1896\\" style=\\"width: 36.875px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-u9-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-u9-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"And\\">And</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr>\\r\\n \\r\\n \\r\\n \\r\\n <tr class=\\"dynamic-condition-row\\" data-select2-id=\\"3072\\">\\r\\n <td class=\\"sn\\">C2</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\" data-select2-id=\\"1150\\"><option value=\\"automation_multiple_is_active\\" data-select2-id=\\"1906\\">Is Active</option><option value=\\"automation_multiple_employee_id\\" data-select2-id=\\"1907\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\" data-select2-id=\\"1908\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\" data-select2-id=\\"1909\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\" data-select2-id=\\"1910\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\" data-select2-id=\\"1911\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\" data-select2-id=\\"1912\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\" data-select2-id=\\"1913\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\" data-select2-id=\\"1914\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\" data-select2-id=\\"1915\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\" data-select2-id=\\"1916\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\" data-select2-id=\\"1917\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\" data-select2-id=\\"1918\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\" data-select2-id=\\"1919\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\" data-select2-id=\\"1920\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\" data-select2-id=\\"1921\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\" data-select2-id=\\"1922\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\" data-select2-id=\\"1923\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\" data-select2-id=\\"1924\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\" data-select2-id=\\"1925\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\" data-select2-id=\\"1926\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\" data-select2-id=\\"1927\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\" data-select2-id=\\"1928\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\" data-select2-id=\\"1929\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\" data-select2-id=\\"1930\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" selected=\\"selected\\" data-select2-id=\\"1152\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\" data-select2-id=\\"1931\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\" data-select2-id=\\"1932\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\" data-select2-id=\\"1933\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\" data-select2-id=\\"1934\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\" data-select2-id=\\"1935\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\" data-select2-id=\\"1936\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\" data-select2-id=\\"1937\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\" data-select2-id=\\"1938\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\" data-select2-id=\\"1939\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\" data-select2-id=\\"1940\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\" data-select2-id=\\"1941\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\" data-select2-id=\\"1942\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\" data-select2-id=\\"1943\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\" data-select2-id=\\"1944\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\" data-select2-id=\\"1945\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\" data-select2-id=\\"1946\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\" data-select2-id=\\"1947\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\" data-select2-id=\\"1948\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\" data-select2-id=\\"1949\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\" data-select2-id=\\"1950\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\" data-select2-id=\\"1951\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\" data-select2-id=\\"1952\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\" data-select2-id=\\"1953\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\" data-select2-id=\\"1954\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\" data-select2-id=\\"1955\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\" data-select2-id=\\"1956\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\" data-select2-id=\\"1957\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\" data-select2-id=\\"1958\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\" data-select2-id=\\"1959\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\" data-select2-id=\\"1960\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\" data-select2-id=\\"1961\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\" data-select2-id=\\"1962\\">Description</option><option value=\\"automation_multiple_attachment\\" data-select2-id=\\"1963\\">Attachment</option><option value=\\"automation_multiple_status\\" data-select2-id=\\"1964\\">Status</option><option value=\\"automation_multiple_requested_date\\" data-select2-id=\\"1965\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\" data-select2-id=\\"1966\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\" data-select2-id=\\"1967\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\" data-select2-id=\\"1968\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\" data-select2-id=\\"1969\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\" data-select2-id=\\"1970\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\" data-select2-id=\\"1971\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\" data-select2-id=\\"1972\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\" data-select2-id=\\"1973\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\" data-select2-id=\\"1974\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\" data-select2-id=\\"1975\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\" data-select2-id=\\"1976\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\" data-select2-id=\\"1977\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\" data-select2-id=\\"1978\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\" data-select2-id=\\"1979\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\" data-select2-id=\\"1980\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\" data-select2-id=\\"1981\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\" data-select2-id=\\"1982\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\" data-select2-id=\\"1983\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\" data-select2-id=\\"1984\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\" data-select2-id=\\"1985\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\" data-select2-id=\\"1986\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\" data-select2-id=\\"1987\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\" data-select2-id=\\"1988\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\" data-select2-id=\\"1989\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\" data-select2-id=\\"1990\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\" data-select2-id=\\"1991\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\" data-select2-id=\\"1992\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default select2-container--above\\" dir=\\"ltr\\" data-select2-id=\\"1898\\" style=\\"width: 117.9px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-px-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-px-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1154\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"1156\\">==</option>\\r\\n <option value=\\"!=\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1899\\" style=\\"width: 59.7125px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-oq-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-oq-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\" data-select2-id=\\"1995\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" tabindex=\\"-1\\" class=\\"w-100 select2-hidden-accessible\\" aria-hidden=\\"true\\" data-select2-id=\\"1159\\"><option value=\\"5\\" data-select2-id=\\"1161\\">Intern Casual Leave</option><option value=\\"4\\" data-select2-id=\\"1996\\">Casual Leave</option><option value=\\"3\\" data-select2-id=\\"1997\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default select2-container--below\\" dir=\\"ltr\\" data-select2-id=\\"1900\\" style=\\"width: 171.163px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-5g-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-5g-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Casual Leave\\">Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"3071\\">\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1163\\">\\r\\n <option value=\\"and\\" data-select2-id=\\"1165\\" selected=\\"selected\\">And</option>\\r\\n <option value=\\"or\\" data-select2-id=\\"3073\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"1901\\" style=\\"width: 55.6125px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-vj-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-vj-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"And\\">And</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr></tbody></table>", "<table id=\\"multipleConditionTable\\" data-select2-id=\\"multipleConditionTable\\">\\r\\n <tbody data-select2-id=\\"1053\\"><tr>\\r\\n <th>Code</th>\\r\\n <th>Field</th>\\r\\n <th>Condition</th>\\r\\n <th>Value</th>\\r\\n <th>Logic</th>\\r\\n <th>\\r\\n Action\\r\\n <span title=\\"Reload\\" onclick=\\"$('[name=model]').change()\\">\\r\\n <ion-icon name=\\"refresh-circle\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"refresh circle\\"></ion-icon>\\r\\n </span>\\r\\n </th>\\r\\n </tr>\\r\\n <tr class=\\"dynamic-condition-row\\" data-select2-id=\\"3072\\">\\r\\n <td class=\\"sn\\">C1</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\" data-select2-id=\\"1883\\"><option value=\\"automation_multiple_is_active\\">Is Active</option><option value=\\"automation_multiple_employee_id\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" selected=\\"selected\\" data-select2-id=\\"1885\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\">Description</option><option value=\\"automation_multiple_attachment\\">Attachment</option><option value=\\"automation_multiple_status\\">Status</option><option value=\\"automation_multiple_requested_date\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"2085\\" style=\\"width: 126.225px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-qs-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-qs-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1887\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"1889\\">==</option>\\r\\n <option value=\\"!=\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"2087\\" style=\\"width: 59.7125px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-u3-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-u3-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" tabindex=\\"-1\\" class=\\"select2-hidden-accessible\\" aria-hidden=\\"true\\" data-select2-id=\\"1892\\"><option value=\\"5\\" data-select2-id=\\"1894\\">Intern Casual Leave</option><option value=\\"4\\">Casual Leave</option><option value=\\"3\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"2090\\" style=\\"width: 176.8px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-9i-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-9i-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Intern Casual Leave\\">Intern Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"3071\\">\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1895\\">\\r\\n <option value=\\"and\\" selected=\\"selected\\" data-select2-id=\\"1897\\">And</option>\\r\\n <option value=\\"or\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"2092\\" style=\\"width: 38.2875px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-fk-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-fk-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"And\\">And</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr>\\r\\n \\r\\n \\r\\n \\r\\n </tbody></table>"], "condition_querystring": ["automation_multiple_condition=automation_multiple_leave_type_id&condition=%3D%3D&automation_multiple_condition=5&logic=and&automation_multiple_condition=automation_multiple_leave_type_id&condition=%3D%3D&automation_multiple_condition=4&logic=and", "automation_multiple_condition=automation_multiple_leave_type_id&condition=%3D%3D&automation_multiple_condition=5&logic=and"]} 2025-02-03 10:35:09.956202+00 273 193 122.176.134.248 \N \N \N
4864 17 17 Eshu Arora (GN0147) | Casual Leave | requested as of 2025-02-03 10:35:56.268637+00:00 0 {"id": ["None", "9"], "status": ["None", "requested"], "end_date": ["None", "2025-02-05"], "is_active": ["None", "True"], "attachment": ["None", ""], "created_at": ["None", "2025-02-03 10:35:56.265481"], "created_by": ["None", "277"], "history_id": ["None", "17"], "start_date": ["None", "2025-02-05"], "description": ["None", "Not well"], "employee_id": ["None", "277"], "modified_by": ["None", "515"], "history_date": ["None", "2025-02-03 10:35:56.268637"], "history_type": ["None", "+"], "history_user": ["None", "515"], "leave_type_id": ["None", "4"], "reject_reason": ["None", ""], "requested_date": ["None", "2025-02-03 10:35:56.182852+00:00"], "requested_days": ["None", "1"], "history_relation": ["None", "9"], "history_highlight": ["None", "False"], "end_date_breakdown": ["None", "full_day"], "leave_clashes_count": ["None", "0"], "start_date_breakdown": ["None", "full_day"], "approved_available_days": ["None", "0"], "approved_carryforward_days": ["None", "0"]} 2025-02-03 10:35:56.278314+00 515 102 122.176.134.248 \N \N \N
4865 9 9 Eshu Arora (GN0147) | Casual Leave | requested 0 {"id": ["None", "9"], "status": ["None", "requested"], "end_date": ["None", "2025-02-05"], "is_active": ["None", "True"], "attachment": ["None", ""], "created_at": ["None", "2025-02-03 10:35:56.265481"], "created_by": ["None", "277"], "start_date": ["None", "2025-02-05"], "description": ["None", "Not well"], "employee_id": ["None", "277"], "history_set": ["None", "leave.HistoricalLeaveRequest.None"], "modified_by": ["None", "515"], "leave_type_id": ["None", "4"], "reject_reason": ["None", ""], "requested_date": ["None", "2025-02-03 10:35:56.182852+00:00"], "requested_days": ["None", "1"], "end_date_breakdown": ["None", "full_day"], "leave_clashes_count": ["None", "0"], "start_date_breakdown": ["None", "full_day"], "approved_available_days": ["None", "0"], "approved_carryforward_days": ["None", "0"]} 2025-02-03 10:35:56.29188+00 515 92 122.176.134.248 \N \N \N
4866 76 76 Eshu Arora (GN0147) | Casual Leave as of 2025-02-03 10:35:56.366548+00:00 0 {"id": ["None", "33"], "is_active": ["None", "True"], "created_at": ["None", "2025-02-03 10:21:52.156547"], "history_id": ["None", "76"], "reset_date": ["None", "2025-12-31"], "employee_id": ["None", "277"], "history_date": ["None", "2025-02-03 10:35:56.366548"], "history_type": ["None", "~"], "assigned_date": ["None", "2025-02-03"], "leave_type_id": ["None", "4"], "available_days": ["None", "6.0"], "history_relation": ["None", "33"], "total_leave_days": ["None", "6.0"], "carryforward_days": ["None", "0.0"], "history_highlight": ["None", "False"]} 2025-02-03 10:35:56.381741+00 \N 105 \N \N \N \N
4867 21 21 EmailLog object (21) 0 {"id": ["None", "21"], "to": ["None", "['eshu.arora@growthnatives.com']"], "body": ["None", "\\n<!DOCTYPE html>\\n<html lang=\\"en\\">\\n <head>\\n <meta charset=\\"UTF-8\\" />\\n <meta http-equiv=\\"X-UA-Compatible\\" content=\\"IE=edge\\" />\\n <meta name=\\"viewport\\" content=\\"width=device-width, initial-scale=1.0\\" />\\n <title>Growth Natives News Letter Design</title>\\n\\n <style>\\n body {\\n margin: 0;\\n background-color: #e5e5e5;\\n }\\n\\n table {\\n border-spacing: 0;\\n }\\n\\n td {\\n padding: 0;\\n }\\n\\n img {\\n border: 0;\\n }\\n\\n .hr-wrapper {\\n width: 100%;\\n table-layout: fixed;\\n background-color: #e5e5e5;\\n padding-bottom: 60px;\\n }\\n\\n .hr-table-main {\\n background-color: #fff;\\n margin: 0 auto;\\n width: 100%;\\n max-width: 650px;\\n border-spacing: 0;\\n font-family: Arial, \\"Helvetica Neue\\", Helvetica, sans-serif;\\n color: #1c1c1c;\\n margin-top: 15px;\\n }\\n\\n .hr-table-main__header {\\n table-layout: fixed;\\n padding: 15px;\\n width: 100%;\\n }\\n\\n .hr-link {\\n color: #6f6f6f;\\n font-size: 12px;\\n }\\n\\n .hr-callout-table {\\n table-layout: fixed;\\n width: 100%;\\n border: 1px solid #f0f0f0;\\n font-size: 14px;\\n }\\n\\n .hr-callout-table td {\\n padding: 10px;\\n background-color: #fafafa;\\n }\\n </style>\\n </head>\\n\\n <body>\\n <center class=\\"hr-wrapper\\">\\n <table class=\\"hr-table-main\\" width=\\"100%\\" style=\\"margin-top: 60px\\">\\n <tr>\\n <td>\\n <table class=\\"hr-table-main__header\\">\\n <tr>\\n <td align=\\"center\\" style=\\"width: 50%;\\">\\n <img\\n src=\\"https://erp.demandtech.org/static/images/ui/growthnatives.png\\"\\n height=\\"40\\"\\n width=\\"120.4\\"\\n />\\n </td>\\n <td style=\\"width: 50%; text-align: right; display:none;\\">\\n <a href=\\"#\\" class=\\"hr-link\\"\\n >View in browser</a\\n >\\n </td>\\n </tr>\\n </table>\\n </td>\\n </tr>\\n <tr>\\n <td\\n align=\\"center\\"\\n style=\\"padding-top: 20px; padding-bottom: 20px; display: none;\\"\\n >\\n <img\\n src=\\"https://erp.demandtech.org/static/images/ui/leave.svg\\"\\n style=\\"\\n display: block;\\n height: auto;\\n border: 0;\\n width: 20%;\\n \\"\\n width=\\"272\\"\\n />\\n </td>\\n </tr>\\n <tr>\\n <td\\n style=\\"padding: 15px 25px 0 25px; font-size: 24px\\"\\n align=\\"center\\"\\n >\\n <strong\\n >Hello Eshu Arora,\\n Leave request created successfully!</strong\\n >\\n </td>\\n </tr>\\n <tr>\\n <td align=\\"center\\" style=\\"padding-top: 0px\\">\\n <p style=\\"width: 90%\\">This is to inform you that the leave request you created has been successfully logged into our system. The manager will now take the necessary actions to address leave request. Should you have any additional information or updates, please feel free to communicate directly with the None.</p>\\n </td>\\n </tr>\\n \\n <tr>\\n <td style=\\"padding: 15px\\" align=\\"center\\">\\n <a\\n href=\\"https://erp.demandtech.org/leave/request-view/?id=9\\"\\n style=\\"\\n background-color: #e54f37;\\n color: #fff;\\n border-radius: 10px;\\n display: inline-block;\\n padding: 15px 25px;\\n text-decoration: none;\\n font-weight: bold;\\n \\"\\n >View Leave Request</a\\n >\\n </td>\\n </tr>\\n \\n\\n <tr>\\n <td\\n align=\\"center\\"\\n style=\\"\\n padding-left: 15px;\\n padding-right: 15px;\\n padding-top: 30px;\\n padding-bottom: 15px;\\n color: #5c5c5c;\\n font-size: 12px;\\n \\"\\n >\\n This mail was sent you because your email has been\\n enrolled as an employee at .<br />\\n Don't want to receive mails like these anymore?\\n <a href=\\"#\\" style=\\"color: #5c5c5c\\">Unsubscribe here</a>.\\n </td>\\n </tr>\\n <tr>\\n <td\\n align=\\"center\\"\\n style=\\"\\n padding-left: 15px;\\n padding-right: 15px;\\n padding-bottom: 10px;\\n padding-top: 10px;\\n color: #5c5c5c;\\n font-size: 12px;\\n \\"\\n >\\n © 2025 GrowthNatives , Inc.\\n </td>\\n </tr>\\n </table>\\n </center>\\n </body>\\n</html>\\n"], "status": ["None", "sent"], "subject": ["None", "Leave request created successfully"], "created_at": ["None", "2025-02-03 10:35:58.808881"], "from_email": ["None", "info viva india.team <info@growthnatives.com>"]} 2025-02-03 10:35:58.812207+00 \N 23 \N \N \N \N
4868 3 3 Leave Request 1 {"condition": ["<form id=\\"multipleConditionForm\\">\\r\\n <table id=\\"multipleConditionTable\\">\\r\\n <tbody><tr>\\r\\n <th>Code</th>\\r\\n <th>Field</th>\\r\\n <th>Condition</th>\\r\\n <th>Value</th>\\r\\n <th>Logic</th>\\r\\n <th>\\r\\n Action\\r\\n <span title=\\"Reload\\" onclick=\\"$('[name=model]').change()\\">\\r\\n <ion-icon name=\\"refresh-circle\\"></ion-icon>\\r\\n </span>\\r\\n </th>\\r\\n </tr>\\r\\n </tbody></table>\\r\\n </form>\\r\\n <script>\\r\\n $(\\"#multipleConditionTable\\").closest(\\"[contenteditable=true]\\").removeAttr(\\"contenteditable\\");\\r\\n </script>", "<form id=\\"multipleConditionForm\\" data-select2-id=\\"multipleConditionForm\\"><table id=\\"multipleConditionTable\\" data-select2-id=\\"multipleConditionTable\\">\\r\\n <tbody data-select2-id=\\"1053\\"><tr>\\r\\n <th>Code</th>\\r\\n <th>Field</th>\\r\\n <th>Condition</th>\\r\\n <th>Value</th>\\r\\n <th>Logic</th>\\r\\n <th>\\r\\n Action\\r\\n <span title=\\"Reload\\" onclick=\\"$('[name=model]').change()\\">\\r\\n <ion-icon name=\\"refresh-circle\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"refresh circle\\"></ion-icon>\\r\\n </span>\\r\\n </th>\\r\\n </tr>\\r\\n <tr class=\\"dynamic-condition-row\\" data-select2-id=\\"3072\\">\\r\\n <td class=\\"sn\\">C1</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\" data-select2-id=\\"1883\\"><option value=\\"automation_multiple_is_active\\" data-select2-id=\\"5751\\">Is Active</option><option value=\\"automation_multiple_employee_id\\" data-select2-id=\\"5752\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\" data-select2-id=\\"5753\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\" data-select2-id=\\"5754\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\" data-select2-id=\\"5755\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\" data-select2-id=\\"5756\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\" data-select2-id=\\"5757\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\" data-select2-id=\\"5758\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\" data-select2-id=\\"5759\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\" data-select2-id=\\"5760\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\" data-select2-id=\\"5761\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\" data-select2-id=\\"5762\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\" data-select2-id=\\"5763\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\" data-select2-id=\\"5764\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\" data-select2-id=\\"5765\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\" data-select2-id=\\"5766\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\" data-select2-id=\\"5767\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\" data-select2-id=\\"5768\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\" data-select2-id=\\"5769\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\" data-select2-id=\\"5770\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\" data-select2-id=\\"5771\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\" data-select2-id=\\"5772\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\" data-select2-id=\\"5773\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\" data-select2-id=\\"5774\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\" data-select2-id=\\"5775\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" data-select2-id=\\"1885\\" selected=\\"selected\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\" data-select2-id=\\"5776\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\" data-select2-id=\\"5777\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\" data-select2-id=\\"5778\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\" data-select2-id=\\"5779\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\" data-select2-id=\\"5780\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\" data-select2-id=\\"5781\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\" data-select2-id=\\"5782\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\" data-select2-id=\\"5783\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\" data-select2-id=\\"5784\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\" data-select2-id=\\"5785\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\" data-select2-id=\\"5786\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\" data-select2-id=\\"5787\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\" data-select2-id=\\"5788\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\" data-select2-id=\\"5789\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\" data-select2-id=\\"5790\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\" data-select2-id=\\"5791\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\" data-select2-id=\\"5792\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\" data-select2-id=\\"5793\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\" data-select2-id=\\"5794\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\" data-select2-id=\\"5795\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\" data-select2-id=\\"5796\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\" data-select2-id=\\"5797\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\" data-select2-id=\\"5798\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\" data-select2-id=\\"5799\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\" data-select2-id=\\"5800\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\" data-select2-id=\\"5801\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\" data-select2-id=\\"5802\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\" data-select2-id=\\"5803\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\" data-select2-id=\\"5804\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\" data-select2-id=\\"5805\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\" data-select2-id=\\"5806\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\" data-select2-id=\\"5807\\">Description</option><option value=\\"automation_multiple_attachment\\" data-select2-id=\\"5808\\">Attachment</option><option value=\\"automation_multiple_status\\" data-select2-id=\\"5809\\">Status</option><option value=\\"automation_multiple_requested_date\\" data-select2-id=\\"5810\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\" data-select2-id=\\"5811\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\" data-select2-id=\\"5812\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\" data-select2-id=\\"5813\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\" data-select2-id=\\"5814\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\" data-select2-id=\\"5815\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\" data-select2-id=\\"5816\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\" data-select2-id=\\"5817\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\" data-select2-id=\\"5818\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\" data-select2-id=\\"5819\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\" data-select2-id=\\"5820\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\" data-select2-id=\\"5821\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\" data-select2-id=\\"5822\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\" data-select2-id=\\"5823\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\" data-select2-id=\\"5824\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\" data-select2-id=\\"5825\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\" data-select2-id=\\"5826\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\" data-select2-id=\\"5827\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\" data-select2-id=\\"5828\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\" data-select2-id=\\"5829\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\" data-select2-id=\\"5830\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\" data-select2-id=\\"5831\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\" data-select2-id=\\"5832\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\" data-select2-id=\\"5833\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\" data-select2-id=\\"5834\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\" data-select2-id=\\"5835\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\" data-select2-id=\\"5836\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\" data-select2-id=\\"5837\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default select2-container--above\\" dir=\\"ltr\\" data-select2-id=\\"4724\\" style=\\"width: 136.837px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-6p-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-6p-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1887\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"1889\\">==</option>\\r\\n <option value=\\"!=\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"4726\\" style=\\"width: 64.4px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-dg-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-dg-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\" data-select2-id=\\"5846\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" data-select2-id=\\"6125\\" tabindex=\\"-1\\" class=\\"select2-hidden-accessible\\" aria-hidden=\\"true\\"><option value=\\"5\\" data-select2-id=\\"6127\\">Intern Casual Leave</option><option value=\\"4\\" data-select2-id=\\"6129\\" selected=\\"selected\\">Casual Leave</option><option value=\\"3\\" data-select2-id=\\"6130\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default select2-container--below select2-container--focus\\" dir=\\"ltr\\" data-select2-id=\\"6126\\" style=\\"width: 176.8px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"0\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-8z-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-8z-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Casual Leave\\">Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"3071\\">\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1895\\">\\r\\n <option value=\\"and\\" selected=\\"selected\\" data-select2-id=\\"1897\\">And</option>\\r\\n <option value=\\"or\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"4731\\" style=\\"width: 54.1625px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-wf-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-wf-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"And\\">And</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr>\\r\\n \\r\\n \\r\\n \\r\\n </tbody></table></form>"], "condition_html": ["<table id=\\"multipleConditionTable\\" data-select2-id=\\"multipleConditionTable\\">\\r\\n <tbody data-select2-id=\\"1053\\"><tr>\\r\\n <th>Code</th>\\r\\n <th>Field</th>\\r\\n <th>Condition</th>\\r\\n <th>Value</th>\\r\\n <th>Logic</th>\\r\\n <th>\\r\\n Action\\r\\n <span title=\\"Reload\\" onclick=\\"$('[name=model]').change()\\">\\r\\n <ion-icon name=\\"refresh-circle\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"refresh circle\\"></ion-icon>\\r\\n </span>\\r\\n </th>\\r\\n </tr>\\r\\n <tr class=\\"dynamic-condition-row\\" data-select2-id=\\"3072\\">\\r\\n <td class=\\"sn\\">C1</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\" data-select2-id=\\"1883\\"><option value=\\"automation_multiple_is_active\\">Is Active</option><option value=\\"automation_multiple_employee_id\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" selected=\\"selected\\" data-select2-id=\\"1885\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\">Description</option><option value=\\"automation_multiple_attachment\\">Attachment</option><option value=\\"automation_multiple_status\\">Status</option><option value=\\"automation_multiple_requested_date\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"2085\\" style=\\"width: 126.225px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-qs-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-qs-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1887\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"1889\\">==</option>\\r\\n <option value=\\"!=\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"2087\\" style=\\"width: 59.7125px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-u3-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-u3-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" tabindex=\\"-1\\" class=\\"select2-hidden-accessible\\" aria-hidden=\\"true\\" data-select2-id=\\"1892\\"><option value=\\"5\\" data-select2-id=\\"1894\\">Intern Casual Leave</option><option value=\\"4\\">Casual Leave</option><option value=\\"3\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"2090\\" style=\\"width: 176.8px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-9i-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-9i-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Intern Casual Leave\\">Intern Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"3071\\">\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1895\\">\\r\\n <option value=\\"and\\" selected=\\"selected\\" data-select2-id=\\"1897\\">And</option>\\r\\n <option value=\\"or\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"2092\\" style=\\"width: 38.2875px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-fk-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-fk-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"And\\">And</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr>\\r\\n \\r\\n \\r\\n \\r\\n </tbody></table>", "<table id=\\"multipleConditionTable\\" data-select2-id=\\"multipleConditionTable\\">\\r\\n <tbody data-select2-id=\\"1053\\"><tr>\\r\\n <th>Code</th>\\r\\n <th>Field</th>\\r\\n <th>Condition</th>\\r\\n <th>Value</th>\\r\\n <th>Logic</th>\\r\\n <th>\\r\\n Action\\r\\n <span title=\\"Reload\\" onclick=\\"$('[name=model]').change()\\">\\r\\n <ion-icon name=\\"refresh-circle\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"refresh circle\\"></ion-icon>\\r\\n </span>\\r\\n </th>\\r\\n </tr>\\r\\n <tr class=\\"dynamic-condition-row\\" data-select2-id=\\"3072\\">\\r\\n <td class=\\"sn\\">C1</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\" data-select2-id=\\"1883\\"><option value=\\"automation_multiple_is_active\\" data-select2-id=\\"5751\\">Is Active</option><option value=\\"automation_multiple_employee_id\\" data-select2-id=\\"5752\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\" data-select2-id=\\"5753\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\" data-select2-id=\\"5754\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\" data-select2-id=\\"5755\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\" data-select2-id=\\"5756\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\" data-select2-id=\\"5757\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\" data-select2-id=\\"5758\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\" data-select2-id=\\"5759\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\" data-select2-id=\\"5760\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\" data-select2-id=\\"5761\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\" data-select2-id=\\"5762\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\" data-select2-id=\\"5763\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\" data-select2-id=\\"5764\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\" data-select2-id=\\"5765\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\" data-select2-id=\\"5766\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\" data-select2-id=\\"5767\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\" data-select2-id=\\"5768\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\" data-select2-id=\\"5769\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\" data-select2-id=\\"5770\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\" data-select2-id=\\"5771\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\" data-select2-id=\\"5772\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\" data-select2-id=\\"5773\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\" data-select2-id=\\"5774\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\" data-select2-id=\\"5775\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" data-select2-id=\\"1885\\" selected=\\"selected\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\" data-select2-id=\\"5776\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\" data-select2-id=\\"5777\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\" data-select2-id=\\"5778\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\" data-select2-id=\\"5779\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\" data-select2-id=\\"5780\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\" data-select2-id=\\"5781\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\" data-select2-id=\\"5782\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\" data-select2-id=\\"5783\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\" data-select2-id=\\"5784\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\" data-select2-id=\\"5785\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\" data-select2-id=\\"5786\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\" data-select2-id=\\"5787\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\" data-select2-id=\\"5788\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\" data-select2-id=\\"5789\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\" data-select2-id=\\"5790\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\" data-select2-id=\\"5791\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\" data-select2-id=\\"5792\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\" data-select2-id=\\"5793\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\" data-select2-id=\\"5794\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\" data-select2-id=\\"5795\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\" data-select2-id=\\"5796\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\" data-select2-id=\\"5797\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\" data-select2-id=\\"5798\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\" data-select2-id=\\"5799\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\" data-select2-id=\\"5800\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\" data-select2-id=\\"5801\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\" data-select2-id=\\"5802\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\" data-select2-id=\\"5803\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\" data-select2-id=\\"5804\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\" data-select2-id=\\"5805\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\" data-select2-id=\\"5806\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\" data-select2-id=\\"5807\\">Description</option><option value=\\"automation_multiple_attachment\\" data-select2-id=\\"5808\\">Attachment</option><option value=\\"automation_multiple_status\\" data-select2-id=\\"5809\\">Status</option><option value=\\"automation_multiple_requested_date\\" data-select2-id=\\"5810\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\" data-select2-id=\\"5811\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\" data-select2-id=\\"5812\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\" data-select2-id=\\"5813\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\" data-select2-id=\\"5814\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\" data-select2-id=\\"5815\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\" data-select2-id=\\"5816\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\" data-select2-id=\\"5817\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\" data-select2-id=\\"5818\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\" data-select2-id=\\"5819\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\" data-select2-id=\\"5820\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\" data-select2-id=\\"5821\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\" data-select2-id=\\"5822\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\" data-select2-id=\\"5823\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\" data-select2-id=\\"5824\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\" data-select2-id=\\"5825\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\" data-select2-id=\\"5826\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\" data-select2-id=\\"5827\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\" data-select2-id=\\"5828\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\" data-select2-id=\\"5829\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\" data-select2-id=\\"5830\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\" data-select2-id=\\"5831\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\" data-select2-id=\\"5832\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\" data-select2-id=\\"5833\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\" data-select2-id=\\"5834\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\" data-select2-id=\\"5835\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\" data-select2-id=\\"5836\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\" data-select2-id=\\"5837\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default select2-container--above\\" dir=\\"ltr\\" data-select2-id=\\"4724\\" style=\\"width: 136.837px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-6p-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-6p-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1887\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"1889\\">==</option>\\r\\n <option value=\\"!=\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"4726\\" style=\\"width: 64.4px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-dg-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-dg-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\" data-select2-id=\\"5846\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" data-select2-id=\\"6125\\" tabindex=\\"-1\\" class=\\"select2-hidden-accessible\\" aria-hidden=\\"true\\"><option value=\\"5\\" data-select2-id=\\"6127\\">Intern Casual Leave</option><option value=\\"4\\" data-select2-id=\\"6129\\" selected=\\"selected\\">Casual Leave</option><option value=\\"3\\" data-select2-id=\\"6130\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default select2-container--below\\" dir=\\"ltr\\" data-select2-id=\\"6126\\" style=\\"width: 176.8px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"0\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-8z-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-8z-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Casual Leave\\">Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"3071\\">\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1895\\">\\r\\n <option value=\\"and\\" selected=\\"selected\\" data-select2-id=\\"1897\\">And</option>\\r\\n <option value=\\"or\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"4731\\" style=\\"width: 54.1625px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-wf-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-wf-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"And\\">And</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr>\\r\\n \\r\\n \\r\\n \\r\\n </tbody></table>"], "condition_querystring": ["automation_multiple_condition=automation_multiple_leave_type_id&condition=%3D%3D&automation_multiple_condition=5&logic=and", "automation_multiple_condition=automation_multiple_leave_type_id&condition=%3D%3D&automation_multiple_condition=4&logic=and"]} 2025-02-03 10:39:58.856551+00 273 193 122.176.134.248 \N \N \N
4869 3 3 Leave Request 1 {"condition": ["<form id=\\"multipleConditionForm\\" data-select2-id=\\"multipleConditionForm\\"><table id=\\"multipleConditionTable\\" data-select2-id=\\"multipleConditionTable\\">\\r\\n <tbody data-select2-id=\\"1053\\"><tr>\\r\\n <th>Code</th>\\r\\n <th>Field</th>\\r\\n <th>Condition</th>\\r\\n <th>Value</th>\\r\\n <th>Logic</th>\\r\\n <th>\\r\\n Action\\r\\n <span title=\\"Reload\\" onclick=\\"$('[name=model]').change()\\">\\r\\n <ion-icon name=\\"refresh-circle\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"refresh circle\\"></ion-icon>\\r\\n </span>\\r\\n </th>\\r\\n </tr>\\r\\n <tr class=\\"dynamic-condition-row\\" data-select2-id=\\"3072\\">\\r\\n <td class=\\"sn\\">C1</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\" data-select2-id=\\"1883\\"><option value=\\"automation_multiple_is_active\\" data-select2-id=\\"5751\\">Is Active</option><option value=\\"automation_multiple_employee_id\\" data-select2-id=\\"5752\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\" data-select2-id=\\"5753\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\" data-select2-id=\\"5754\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\" data-select2-id=\\"5755\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\" data-select2-id=\\"5756\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\" data-select2-id=\\"5757\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\" data-select2-id=\\"5758\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\" data-select2-id=\\"5759\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\" data-select2-id=\\"5760\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\" data-select2-id=\\"5761\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\" data-select2-id=\\"5762\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\" data-select2-id=\\"5763\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\" data-select2-id=\\"5764\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\" data-select2-id=\\"5765\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\" data-select2-id=\\"5766\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\" data-select2-id=\\"5767\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\" data-select2-id=\\"5768\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\" data-select2-id=\\"5769\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\" data-select2-id=\\"5770\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\" data-select2-id=\\"5771\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\" data-select2-id=\\"5772\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\" data-select2-id=\\"5773\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\" data-select2-id=\\"5774\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\" data-select2-id=\\"5775\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" data-select2-id=\\"1885\\" selected=\\"selected\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\" data-select2-id=\\"5776\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\" data-select2-id=\\"5777\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\" data-select2-id=\\"5778\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\" data-select2-id=\\"5779\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\" data-select2-id=\\"5780\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\" data-select2-id=\\"5781\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\" data-select2-id=\\"5782\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\" data-select2-id=\\"5783\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\" data-select2-id=\\"5784\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\" data-select2-id=\\"5785\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\" data-select2-id=\\"5786\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\" data-select2-id=\\"5787\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\" data-select2-id=\\"5788\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\" data-select2-id=\\"5789\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\" data-select2-id=\\"5790\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\" data-select2-id=\\"5791\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\" data-select2-id=\\"5792\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\" data-select2-id=\\"5793\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\" data-select2-id=\\"5794\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\" data-select2-id=\\"5795\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\" data-select2-id=\\"5796\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\" data-select2-id=\\"5797\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\" data-select2-id=\\"5798\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\" data-select2-id=\\"5799\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\" data-select2-id=\\"5800\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\" data-select2-id=\\"5801\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\" data-select2-id=\\"5802\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\" data-select2-id=\\"5803\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\" data-select2-id=\\"5804\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\" data-select2-id=\\"5805\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\" data-select2-id=\\"5806\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\" data-select2-id=\\"5807\\">Description</option><option value=\\"automation_multiple_attachment\\" data-select2-id=\\"5808\\">Attachment</option><option value=\\"automation_multiple_status\\" data-select2-id=\\"5809\\">Status</option><option value=\\"automation_multiple_requested_date\\" data-select2-id=\\"5810\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\" data-select2-id=\\"5811\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\" data-select2-id=\\"5812\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\" data-select2-id=\\"5813\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\" data-select2-id=\\"5814\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\" data-select2-id=\\"5815\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\" data-select2-id=\\"5816\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\" data-select2-id=\\"5817\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\" data-select2-id=\\"5818\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\" data-select2-id=\\"5819\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\" data-select2-id=\\"5820\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\" data-select2-id=\\"5821\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\" data-select2-id=\\"5822\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\" data-select2-id=\\"5823\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\" data-select2-id=\\"5824\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\" data-select2-id=\\"5825\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\" data-select2-id=\\"5826\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\" data-select2-id=\\"5827\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\" data-select2-id=\\"5828\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\" data-select2-id=\\"5829\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\" data-select2-id=\\"5830\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\" data-select2-id=\\"5831\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\" data-select2-id=\\"5832\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\" data-select2-id=\\"5833\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\" data-select2-id=\\"5834\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\" data-select2-id=\\"5835\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\" data-select2-id=\\"5836\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\" data-select2-id=\\"5837\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default select2-container--above\\" dir=\\"ltr\\" data-select2-id=\\"4724\\" style=\\"width: 136.837px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-6p-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-6p-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1887\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"1889\\">==</option>\\r\\n <option value=\\"!=\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"4726\\" style=\\"width: 64.4px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-dg-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-dg-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\" data-select2-id=\\"5846\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" data-select2-id=\\"6125\\" tabindex=\\"-1\\" class=\\"select2-hidden-accessible\\" aria-hidden=\\"true\\"><option value=\\"5\\" data-select2-id=\\"6127\\">Intern Casual Leave</option><option value=\\"4\\" data-select2-id=\\"6129\\" selected=\\"selected\\">Casual Leave</option><option value=\\"3\\" data-select2-id=\\"6130\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default select2-container--below select2-container--focus\\" dir=\\"ltr\\" data-select2-id=\\"6126\\" style=\\"width: 176.8px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"0\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-8z-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-8z-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Casual Leave\\">Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"3071\\">\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1895\\">\\r\\n <option value=\\"and\\" selected=\\"selected\\" data-select2-id=\\"1897\\">And</option>\\r\\n <option value=\\"or\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"4731\\" style=\\"width: 54.1625px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-wf-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-wf-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"And\\">And</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr>\\r\\n \\r\\n \\r\\n \\r\\n </tbody></table></form>", "<form id=\\"multipleConditionForm\\" data-select2-id=\\"multipleConditionForm\\"><table id=\\"multipleConditionTable\\" data-select2-id=\\"multipleConditionTable\\">\\r\\n <tbody data-select2-id=\\"1053\\"><tr>\\r\\n <th>Code</th>\\r\\n <th>Field</th>\\r\\n <th>Condition</th>\\r\\n <th>Value</th>\\r\\n <th>Logic</th>\\r\\n <th>\\r\\n Action\\r\\n <span title=\\"Reload\\" onclick=\\"$('[name=model]').change()\\">\\r\\n <ion-icon name=\\"refresh-circle\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"refresh circle\\"></ion-icon>\\r\\n </span>\\r\\n </th>\\r\\n </tr>\\r\\n <tr class=\\"dynamic-condition-row\\" data-select2-id=\\"3072\\">\\r\\n <td class=\\"sn\\">C1</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\" data-select2-id=\\"7155\\"><option value=\\"automation_multiple_is_active\\">Is Active</option><option value=\\"automation_multiple_employee_id\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" selected=\\"selected\\" data-select2-id=\\"7157\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\">Description</option><option value=\\"automation_multiple_attachment\\">Attachment</option><option value=\\"automation_multiple_status\\">Status</option><option value=\\"automation_multiple_requested_date\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"7156\\" style=\\"width: 128.375px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-o4-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-o4-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"7159\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"7161\\">==</option>\\r\\n <option value=\\"!=\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"7160\\" style=\\"width: 59.7125px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-ku-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-ku-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\" data-select2-id=\\"5846\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" tabindex=\\"-1\\" class=\\"select2-hidden-accessible\\" aria-hidden=\\"true\\" data-select2-id=\\"7162\\"><option value=\\"5\\">Intern Casual Leave</option><option value=\\"4\\" selected=\\"selected\\" data-select2-id=\\"7164\\">Casual Leave</option><option value=\\"3\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"7163\\" style=\\"width: 176.8px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-3a-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-3a-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Casual Leave\\">Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"3071\\">\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"7166\\">\\r\\n <option value=\\"and\\" selected=\\"selected\\" data-select2-id=\\"7168\\">And</option>\\r\\n <option value=\\"or\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"7167\\" style=\\"width: 38.325px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-l3-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-l3-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"And\\">And</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr>\\r\\n \\r\\n \\r\\n \\r\\n <tr class=\\"dynamic-condition-row\\" data-select2-id=\\"3072\\">\\r\\n <td class=\\"sn\\">C2</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\" data-select2-id=\\"1883\\"><option value=\\"automation_multiple_is_active\\" data-select2-id=\\"5751\\">Is Active</option><option value=\\"automation_multiple_employee_id\\" data-select2-id=\\"5752\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\" data-select2-id=\\"5753\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\" data-select2-id=\\"5754\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\" data-select2-id=\\"5755\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\" data-select2-id=\\"5756\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\" data-select2-id=\\"5757\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\" data-select2-id=\\"5758\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\" data-select2-id=\\"5759\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\" data-select2-id=\\"5760\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\" data-select2-id=\\"5761\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\" data-select2-id=\\"5762\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\" data-select2-id=\\"5763\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\" data-select2-id=\\"5764\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\" data-select2-id=\\"5765\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\" data-select2-id=\\"5766\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\" data-select2-id=\\"5767\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\" data-select2-id=\\"5768\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\" data-select2-id=\\"5769\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\" data-select2-id=\\"5770\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\" data-select2-id=\\"5771\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\" data-select2-id=\\"5772\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\" data-select2-id=\\"5773\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\" data-select2-id=\\"5774\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\" data-select2-id=\\"5775\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" data-select2-id=\\"1885\\" selected=\\"selected\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\" data-select2-id=\\"5776\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\" data-select2-id=\\"5777\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\" data-select2-id=\\"5778\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\" data-select2-id=\\"5779\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\" data-select2-id=\\"5780\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\" data-select2-id=\\"5781\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\" data-select2-id=\\"5782\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\" data-select2-id=\\"5783\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\" data-select2-id=\\"5784\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\" data-select2-id=\\"5785\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\" data-select2-id=\\"5786\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\" data-select2-id=\\"5787\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\" data-select2-id=\\"5788\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\" data-select2-id=\\"5789\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\" data-select2-id=\\"5790\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\" data-select2-id=\\"5791\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\" data-select2-id=\\"5792\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\" data-select2-id=\\"5793\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\" data-select2-id=\\"5794\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\" data-select2-id=\\"5795\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\" data-select2-id=\\"5796\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\" data-select2-id=\\"5797\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\" data-select2-id=\\"5798\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\" data-select2-id=\\"5799\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\" data-select2-id=\\"5800\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\" data-select2-id=\\"5801\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\" data-select2-id=\\"5802\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\" data-select2-id=\\"5803\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\" data-select2-id=\\"5804\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\" data-select2-id=\\"5805\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\" data-select2-id=\\"5806\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\" data-select2-id=\\"5807\\">Description</option><option value=\\"automation_multiple_attachment\\" data-select2-id=\\"5808\\">Attachment</option><option value=\\"automation_multiple_status\\" data-select2-id=\\"5809\\">Status</option><option value=\\"automation_multiple_requested_date\\" data-select2-id=\\"5810\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\" data-select2-id=\\"5811\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\" data-select2-id=\\"5812\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\" data-select2-id=\\"5813\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\" data-select2-id=\\"5814\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\" data-select2-id=\\"5815\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\" data-select2-id=\\"5816\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\" data-select2-id=\\"5817\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\" data-select2-id=\\"5818\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\" data-select2-id=\\"5819\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\" data-select2-id=\\"5820\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\" data-select2-id=\\"5821\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\" data-select2-id=\\"5822\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\" data-select2-id=\\"5823\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\" data-select2-id=\\"5824\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\" data-select2-id=\\"5825\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\" data-select2-id=\\"5826\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\" data-select2-id=\\"5827\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\" data-select2-id=\\"5828\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\" data-select2-id=\\"5829\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\" data-select2-id=\\"5830\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\" data-select2-id=\\"5831\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\" data-select2-id=\\"5832\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\" data-select2-id=\\"5833\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\" data-select2-id=\\"5834\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\" data-select2-id=\\"5835\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\" data-select2-id=\\"5836\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\" data-select2-id=\\"5837\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"7169\\" style=\\"width: 139.55px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-ju-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-ju-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1887\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"1889\\">==</option>\\r\\n <option value=\\"!=\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"7170\\" style=\\"width: 59.7125px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-f7-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-f7-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\" data-select2-id=\\"5846\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" data-select2-id=\\"6125\\" tabindex=\\"-1\\" class=\\"w-100 select2-hidden-accessible\\" aria-hidden=\\"true\\"><option value=\\"5\\" data-select2-id=\\"6127\\">Intern Casual Leave</option><option value=\\"4\\" data-select2-id=\\"6129\\" selected=\\"selected\\">Casual Leave</option><option value=\\"3\\" data-select2-id=\\"6130\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default select2-container--above select2-container--focus\\" dir=\\"ltr\\" data-select2-id=\\"7171\\" style=\\"width: 171.163px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-b0-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-b0-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Intern Casual Leave\\">Intern Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"3071\\">\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1895\\">\\r\\n <option value=\\"and\\" selected=\\"selected\\" data-select2-id=\\"1897\\">And</option>\\r\\n <option value=\\"or\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"7172\\" style=\\"width: 60.5875px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-r2-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-r2-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"And\\">And</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr></tbody></table></form>"], "condition_html": ["<table id=\\"multipleConditionTable\\" data-select2-id=\\"multipleConditionTable\\">\\r\\n <tbody data-select2-id=\\"1053\\"><tr>\\r\\n <th>Code</th>\\r\\n <th>Field</th>\\r\\n <th>Condition</th>\\r\\n <th>Value</th>\\r\\n <th>Logic</th>\\r\\n <th>\\r\\n Action\\r\\n <span title=\\"Reload\\" onclick=\\"$('[name=model]').change()\\">\\r\\n <ion-icon name=\\"refresh-circle\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"refresh circle\\"></ion-icon>\\r\\n </span>\\r\\n </th>\\r\\n </tr>\\r\\n <tr class=\\"dynamic-condition-row\\" data-select2-id=\\"3072\\">\\r\\n <td class=\\"sn\\">C1</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\" data-select2-id=\\"1883\\"><option value=\\"automation_multiple_is_active\\" data-select2-id=\\"5751\\">Is Active</option><option value=\\"automation_multiple_employee_id\\" data-select2-id=\\"5752\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\" data-select2-id=\\"5753\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\" data-select2-id=\\"5754\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\" data-select2-id=\\"5755\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\" data-select2-id=\\"5756\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\" data-select2-id=\\"5757\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\" data-select2-id=\\"5758\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\" data-select2-id=\\"5759\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\" data-select2-id=\\"5760\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\" data-select2-id=\\"5761\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\" data-select2-id=\\"5762\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\" data-select2-id=\\"5763\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\" data-select2-id=\\"5764\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\" data-select2-id=\\"5765\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\" data-select2-id=\\"5766\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\" data-select2-id=\\"5767\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\" data-select2-id=\\"5768\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\" data-select2-id=\\"5769\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\" data-select2-id=\\"5770\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\" data-select2-id=\\"5771\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\" data-select2-id=\\"5772\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\" data-select2-id=\\"5773\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\" data-select2-id=\\"5774\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\" data-select2-id=\\"5775\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" data-select2-id=\\"1885\\" selected=\\"selected\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\" data-select2-id=\\"5776\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\" data-select2-id=\\"5777\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\" data-select2-id=\\"5778\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\" data-select2-id=\\"5779\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\" data-select2-id=\\"5780\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\" data-select2-id=\\"5781\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\" data-select2-id=\\"5782\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\" data-select2-id=\\"5783\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\" data-select2-id=\\"5784\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\" data-select2-id=\\"5785\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\" data-select2-id=\\"5786\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\" data-select2-id=\\"5787\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\" data-select2-id=\\"5788\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\" data-select2-id=\\"5789\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\" data-select2-id=\\"5790\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\" data-select2-id=\\"5791\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\" data-select2-id=\\"5792\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\" data-select2-id=\\"5793\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\" data-select2-id=\\"5794\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\" data-select2-id=\\"5795\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\" data-select2-id=\\"5796\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\" data-select2-id=\\"5797\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\" data-select2-id=\\"5798\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\" data-select2-id=\\"5799\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\" data-select2-id=\\"5800\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\" data-select2-id=\\"5801\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\" data-select2-id=\\"5802\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\" data-select2-id=\\"5803\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\" data-select2-id=\\"5804\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\" data-select2-id=\\"5805\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\" data-select2-id=\\"5806\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\" data-select2-id=\\"5807\\">Description</option><option value=\\"automation_multiple_attachment\\" data-select2-id=\\"5808\\">Attachment</option><option value=\\"automation_multiple_status\\" data-select2-id=\\"5809\\">Status</option><option value=\\"automation_multiple_requested_date\\" data-select2-id=\\"5810\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\" data-select2-id=\\"5811\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\" data-select2-id=\\"5812\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\" data-select2-id=\\"5813\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\" data-select2-id=\\"5814\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\" data-select2-id=\\"5815\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\" data-select2-id=\\"5816\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\" data-select2-id=\\"5817\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\" data-select2-id=\\"5818\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\" data-select2-id=\\"5819\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\" data-select2-id=\\"5820\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\" data-select2-id=\\"5821\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\" data-select2-id=\\"5822\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\" data-select2-id=\\"5823\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\" data-select2-id=\\"5824\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\" data-select2-id=\\"5825\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\" data-select2-id=\\"5826\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\" data-select2-id=\\"5827\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\" data-select2-id=\\"5828\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\" data-select2-id=\\"5829\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\" data-select2-id=\\"5830\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\" data-select2-id=\\"5831\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\" data-select2-id=\\"5832\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\" data-select2-id=\\"5833\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\" data-select2-id=\\"5834\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\" data-select2-id=\\"5835\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\" data-select2-id=\\"5836\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\" data-select2-id=\\"5837\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default select2-container--above\\" dir=\\"ltr\\" data-select2-id=\\"4724\\" style=\\"width: 136.837px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-6p-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-6p-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1887\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"1889\\">==</option>\\r\\n <option value=\\"!=\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"4726\\" style=\\"width: 64.4px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-dg-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-dg-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\" data-select2-id=\\"5846\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" data-select2-id=\\"6125\\" tabindex=\\"-1\\" class=\\"select2-hidden-accessible\\" aria-hidden=\\"true\\"><option value=\\"5\\" data-select2-id=\\"6127\\">Intern Casual Leave</option><option value=\\"4\\" data-select2-id=\\"6129\\" selected=\\"selected\\">Casual Leave</option><option value=\\"3\\" data-select2-id=\\"6130\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default select2-container--below\\" dir=\\"ltr\\" data-select2-id=\\"6126\\" style=\\"width: 176.8px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"0\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-8z-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-8z-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Casual Leave\\">Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"3071\\">\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1895\\">\\r\\n <option value=\\"and\\" selected=\\"selected\\" data-select2-id=\\"1897\\">And</option>\\r\\n <option value=\\"or\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"4731\\" style=\\"width: 54.1625px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-wf-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-wf-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"And\\">And</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr>\\r\\n \\r\\n \\r\\n \\r\\n </tbody></table>", "<table id=\\"multipleConditionTable\\" data-select2-id=\\"multipleConditionTable\\">\\r\\n <tbody data-select2-id=\\"1053\\"><tr>\\r\\n <th>Code</th>\\r\\n <th>Field</th>\\r\\n <th>Condition</th>\\r\\n <th>Value</th>\\r\\n <th>Logic</th>\\r\\n <th>\\r\\n Action\\r\\n <span title=\\"Reload\\" onclick=\\"$('[name=model]').change()\\">\\r\\n <ion-icon name=\\"refresh-circle\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"refresh circle\\"></ion-icon>\\r\\n </span>\\r\\n </th>\\r\\n </tr>\\r\\n <tr class=\\"dynamic-condition-row\\" data-select2-id=\\"3072\\">\\r\\n <td class=\\"sn\\">C1</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\" data-select2-id=\\"7155\\"><option value=\\"automation_multiple_is_active\\">Is Active</option><option value=\\"automation_multiple_employee_id\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" selected=\\"selected\\" data-select2-id=\\"7157\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\">Description</option><option value=\\"automation_multiple_attachment\\">Attachment</option><option value=\\"automation_multiple_status\\">Status</option><option value=\\"automation_multiple_requested_date\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"7156\\" style=\\"width: 128.375px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-o4-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-o4-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"7159\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"7161\\">==</option>\\r\\n <option value=\\"!=\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"7160\\" style=\\"width: 59.7125px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-ku-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-ku-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\" data-select2-id=\\"5846\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" tabindex=\\"-1\\" class=\\"select2-hidden-accessible\\" aria-hidden=\\"true\\" data-select2-id=\\"7162\\"><option value=\\"5\\">Intern Casual Leave</option><option value=\\"4\\" selected=\\"selected\\" data-select2-id=\\"7164\\">Casual Leave</option><option value=\\"3\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"7163\\" style=\\"width: 176.8px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-3a-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-3a-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Casual Leave\\">Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"3071\\">\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"7166\\">\\r\\n <option value=\\"and\\" selected=\\"selected\\" data-select2-id=\\"7168\\">And</option>\\r\\n <option value=\\"or\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"7167\\" style=\\"width: 38.325px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-l3-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-l3-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"And\\">And</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr>\\r\\n \\r\\n \\r\\n \\r\\n <tr class=\\"dynamic-condition-row\\" data-select2-id=\\"3072\\">\\r\\n <td class=\\"sn\\">C2</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\" data-select2-id=\\"1883\\"><option value=\\"automation_multiple_is_active\\" data-select2-id=\\"5751\\">Is Active</option><option value=\\"automation_multiple_employee_id\\" data-select2-id=\\"5752\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\" data-select2-id=\\"5753\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\" data-select2-id=\\"5754\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\" data-select2-id=\\"5755\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\" data-select2-id=\\"5756\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\" data-select2-id=\\"5757\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\" data-select2-id=\\"5758\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\" data-select2-id=\\"5759\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\" data-select2-id=\\"5760\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\" data-select2-id=\\"5761\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\" data-select2-id=\\"5762\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\" data-select2-id=\\"5763\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\" data-select2-id=\\"5764\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\" data-select2-id=\\"5765\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\" data-select2-id=\\"5766\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\" data-select2-id=\\"5767\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\" data-select2-id=\\"5768\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\" data-select2-id=\\"5769\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\" data-select2-id=\\"5770\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\" data-select2-id=\\"5771\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\" data-select2-id=\\"5772\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\" data-select2-id=\\"5773\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\" data-select2-id=\\"5774\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\" data-select2-id=\\"5775\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" data-select2-id=\\"1885\\" selected=\\"selected\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\" data-select2-id=\\"5776\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\" data-select2-id=\\"5777\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\" data-select2-id=\\"5778\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\" data-select2-id=\\"5779\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\" data-select2-id=\\"5780\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\" data-select2-id=\\"5781\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\" data-select2-id=\\"5782\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\" data-select2-id=\\"5783\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\" data-select2-id=\\"5784\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\" data-select2-id=\\"5785\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\" data-select2-id=\\"5786\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\" data-select2-id=\\"5787\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\" data-select2-id=\\"5788\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\" data-select2-id=\\"5789\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\" data-select2-id=\\"5790\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\" data-select2-id=\\"5791\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\" data-select2-id=\\"5792\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\" data-select2-id=\\"5793\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\" data-select2-id=\\"5794\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\" data-select2-id=\\"5795\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\" data-select2-id=\\"5796\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\" data-select2-id=\\"5797\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\" data-select2-id=\\"5798\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\" data-select2-id=\\"5799\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\" data-select2-id=\\"5800\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\" data-select2-id=\\"5801\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\" data-select2-id=\\"5802\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\" data-select2-id=\\"5803\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\" data-select2-id=\\"5804\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\" data-select2-id=\\"5805\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\" data-select2-id=\\"5806\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\" data-select2-id=\\"5807\\">Description</option><option value=\\"automation_multiple_attachment\\" data-select2-id=\\"5808\\">Attachment</option><option value=\\"automation_multiple_status\\" data-select2-id=\\"5809\\">Status</option><option value=\\"automation_multiple_requested_date\\" data-select2-id=\\"5810\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\" data-select2-id=\\"5811\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\" data-select2-id=\\"5812\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\" data-select2-id=\\"5813\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\" data-select2-id=\\"5814\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\" data-select2-id=\\"5815\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\" data-select2-id=\\"5816\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\" data-select2-id=\\"5817\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\" data-select2-id=\\"5818\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\" data-select2-id=\\"5819\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\" data-select2-id=\\"5820\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\" data-select2-id=\\"5821\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\" data-select2-id=\\"5822\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\" data-select2-id=\\"5823\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\" data-select2-id=\\"5824\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\" data-select2-id=\\"5825\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\" data-select2-id=\\"5826\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\" data-select2-id=\\"5827\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\" data-select2-id=\\"5828\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\" data-select2-id=\\"5829\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\" data-select2-id=\\"5830\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\" data-select2-id=\\"5831\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\" data-select2-id=\\"5832\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\" data-select2-id=\\"5833\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\" data-select2-id=\\"5834\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\" data-select2-id=\\"5835\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\" data-select2-id=\\"5836\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\" data-select2-id=\\"5837\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"7169\\" style=\\"width: 139.55px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-ju-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-ju-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1887\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"1889\\">==</option>\\r\\n <option value=\\"!=\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"7170\\" style=\\"width: 59.7125px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-f7-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-f7-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\" data-select2-id=\\"5846\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" data-select2-id=\\"6125\\" tabindex=\\"-1\\" class=\\"w-100 select2-hidden-accessible\\" aria-hidden=\\"true\\"><option value=\\"5\\" data-select2-id=\\"6127\\">Intern Casual Leave</option><option value=\\"4\\" data-select2-id=\\"6129\\" selected=\\"selected\\">Casual Leave</option><option value=\\"3\\" data-select2-id=\\"6130\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default select2-container--above\\" dir=\\"ltr\\" data-select2-id=\\"7171\\" style=\\"width: 171.163px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-b0-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-b0-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Intern Casual Leave\\">Intern Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"3071\\">\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1895\\">\\r\\n <option value=\\"and\\" selected=\\"selected\\" data-select2-id=\\"1897\\">And</option>\\r\\n <option value=\\"or\\" data-select2-id=\\"7182\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default select2-container--below\\" dir=\\"ltr\\" data-select2-id=\\"7172\\" style=\\"width: 60.5875px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-r2-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-r2-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"And\\">And</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr></tbody></table>"], "condition_querystring": ["automation_multiple_condition=automation_multiple_leave_type_id&condition=%3D%3D&automation_multiple_condition=4&logic=and", "automation_multiple_condition=automation_multiple_leave_type_id&condition=%3D%3D&automation_multiple_condition=4&logic=and&automation_multiple_condition=automation_multiple_leave_type_id&condition=%3D%3D&automation_multiple_condition=5&logic=and"]} 2025-02-03 10:40:30.4553+00 273 193 122.176.134.248 \N \N \N
4899 ubv90hgzn2bta42b6k1qzei1yonr3ig6 \N ubv90hgzn2bta42b6k1qzei1yonr3ig6 0 {"expire_date": ["None", "2025-02-17 11:08:46.089316"], "session_key": ["None", "ubv90hgzn2bta42b6k1qzei1yonr3ig6"], "session_data": ["None", ".eJyrVkoqSk1MSS4qzU0qVrKKrlYqLcpRslLKKCkpKLbS108tKtBLSc1NzEspSU3O0MsvStdX0lHKS8xNBSpy9wOy0_JL81KUrEqKSlNrdYjQnpOfnpmHZAiYj2ZObC0Aisk0Aw:1teuJq:QmszDf-yTqQ8DhsUmHBx_352H-x2ZXTnWUPXmuzvFJI"]} 2025-02-03 11:08:46.090335+00 \N 6 122.176.134.248 \N \N \N
4870 18 18 Eshu Arora (GN0147) | Casual Leave | requested as of 2025-02-03 10:41:22.244163+00:00 0 {"id": ["None", "9"], "status": ["None", "requested"], "end_date": ["None", "2025-02-05"], "is_active": ["None", "True"], "attachment": ["None", ""], "created_at": ["None", "2025-02-03 10:35:56.265481"], "created_by": ["None", "277"], "history_id": ["None", "18"], "start_date": ["None", "2025-02-05"], "description": ["None", "Not well"], "employee_id": ["None", "277"], "modified_by": ["None", "515"], "history_date": ["None", "2025-02-03 10:41:22.244163"], "history_type": ["None", "-"], "history_user": ["None", "515"], "leave_type_id": ["None", "4"], "reject_reason": ["None", ""], "requested_date": ["None", "2025-02-03"], "requested_days": ["None", "1.0"], "history_relation": ["None", "9"], "history_highlight": ["None", "False"], "end_date_breakdown": ["None", "full_day"], "leave_clashes_count": ["None", "0"], "start_date_breakdown": ["None", "full_day"], "approved_available_days": ["None", "0.0"], "approved_carryforward_days": ["None", "0.0"]} 2025-02-03 10:41:22.251148+00 515 102 122.176.134.248 \N \N \N
4871 9 9 Eshu Arora (GN0147) | Casual Leave | requested 2 {"id": ["9", "None"], "status": ["requested", "None"], "end_date": ["2025-02-05", "None"], "is_active": ["True", "None"], "attachment": ["", "None"], "created_at": ["2025-02-03 10:35:56.265481", "None"], "created_by": ["277", "None"], "start_date": ["2025-02-05", "None"], "description": ["Not well", "None"], "employee_id": ["277", "None"], "history_set": ["leave.HistoricalLeaveRequest.None", "None"], "modified_by": ["515", "None"], "leave_type_id": ["4", "None"], "reject_reason": ["", "None"], "requested_date": ["2025-02-03", "None"], "requested_days": ["1.0", "None"], "end_date_breakdown": ["full_day", "None"], "leave_clashes_count": ["0", "None"], "start_date_breakdown": ["full_day", "None"], "approved_available_days": ["0.0", "None"], "approved_carryforward_days": ["0.0", "None"]} 2025-02-03 10:41:22.258635+00 515 92 122.176.134.248 \N \N \N
4872 3 3 Leave Request 1 {"condition": ["<form id=\\"multipleConditionForm\\" data-select2-id=\\"multipleConditionForm\\"><table id=\\"multipleConditionTable\\" data-select2-id=\\"multipleConditionTable\\">\\r\\n <tbody data-select2-id=\\"1053\\"><tr>\\r\\n <th>Code</th>\\r\\n <th>Field</th>\\r\\n <th>Condition</th>\\r\\n <th>Value</th>\\r\\n <th>Logic</th>\\r\\n <th>\\r\\n Action\\r\\n <span title=\\"Reload\\" onclick=\\"$('[name=model]').change()\\">\\r\\n <ion-icon name=\\"refresh-circle\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"refresh circle\\"></ion-icon>\\r\\n </span>\\r\\n </th>\\r\\n </tr>\\r\\n <tr class=\\"dynamic-condition-row\\" data-select2-id=\\"3072\\">\\r\\n <td class=\\"sn\\">C1</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\" data-select2-id=\\"7155\\"><option value=\\"automation_multiple_is_active\\">Is Active</option><option value=\\"automation_multiple_employee_id\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" selected=\\"selected\\" data-select2-id=\\"7157\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\">Description</option><option value=\\"automation_multiple_attachment\\">Attachment</option><option value=\\"automation_multiple_status\\">Status</option><option value=\\"automation_multiple_requested_date\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"7156\\" style=\\"width: 128.375px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-o4-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-o4-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"7159\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"7161\\">==</option>\\r\\n <option value=\\"!=\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"7160\\" style=\\"width: 59.7125px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-ku-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-ku-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\" data-select2-id=\\"5846\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" tabindex=\\"-1\\" class=\\"select2-hidden-accessible\\" aria-hidden=\\"true\\" data-select2-id=\\"7162\\"><option value=\\"5\\">Intern Casual Leave</option><option value=\\"4\\" selected=\\"selected\\" data-select2-id=\\"7164\\">Casual Leave</option><option value=\\"3\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"7163\\" style=\\"width: 176.8px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-3a-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-3a-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Casual Leave\\">Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"3071\\">\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"7166\\">\\r\\n <option value=\\"and\\" selected=\\"selected\\" data-select2-id=\\"7168\\">And</option>\\r\\n <option value=\\"or\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"7167\\" style=\\"width: 38.325px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-l3-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-l3-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"And\\">And</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr>\\r\\n \\r\\n \\r\\n \\r\\n <tr class=\\"dynamic-condition-row\\" data-select2-id=\\"3072\\">\\r\\n <td class=\\"sn\\">C2</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\" data-select2-id=\\"1883\\"><option value=\\"automation_multiple_is_active\\" data-select2-id=\\"5751\\">Is Active</option><option value=\\"automation_multiple_employee_id\\" data-select2-id=\\"5752\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\" data-select2-id=\\"5753\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\" data-select2-id=\\"5754\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\" data-select2-id=\\"5755\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\" data-select2-id=\\"5756\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\" data-select2-id=\\"5757\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\" data-select2-id=\\"5758\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\" data-select2-id=\\"5759\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\" data-select2-id=\\"5760\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\" data-select2-id=\\"5761\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\" data-select2-id=\\"5762\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\" data-select2-id=\\"5763\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\" data-select2-id=\\"5764\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\" data-select2-id=\\"5765\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\" data-select2-id=\\"5766\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\" data-select2-id=\\"5767\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\" data-select2-id=\\"5768\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\" data-select2-id=\\"5769\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\" data-select2-id=\\"5770\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\" data-select2-id=\\"5771\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\" data-select2-id=\\"5772\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\" data-select2-id=\\"5773\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\" data-select2-id=\\"5774\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\" data-select2-id=\\"5775\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" data-select2-id=\\"1885\\" selected=\\"selected\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\" data-select2-id=\\"5776\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\" data-select2-id=\\"5777\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\" data-select2-id=\\"5778\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\" data-select2-id=\\"5779\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\" data-select2-id=\\"5780\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\" data-select2-id=\\"5781\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\" data-select2-id=\\"5782\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\" data-select2-id=\\"5783\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\" data-select2-id=\\"5784\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\" data-select2-id=\\"5785\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\" data-select2-id=\\"5786\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\" data-select2-id=\\"5787\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\" data-select2-id=\\"5788\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\" data-select2-id=\\"5789\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\" data-select2-id=\\"5790\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\" data-select2-id=\\"5791\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\" data-select2-id=\\"5792\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\" data-select2-id=\\"5793\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\" data-select2-id=\\"5794\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\" data-select2-id=\\"5795\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\" data-select2-id=\\"5796\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\" data-select2-id=\\"5797\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\" data-select2-id=\\"5798\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\" data-select2-id=\\"5799\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\" data-select2-id=\\"5800\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\" data-select2-id=\\"5801\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\" data-select2-id=\\"5802\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\" data-select2-id=\\"5803\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\" data-select2-id=\\"5804\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\" data-select2-id=\\"5805\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\" data-select2-id=\\"5806\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\" data-select2-id=\\"5807\\">Description</option><option value=\\"automation_multiple_attachment\\" data-select2-id=\\"5808\\">Attachment</option><option value=\\"automation_multiple_status\\" data-select2-id=\\"5809\\">Status</option><option value=\\"automation_multiple_requested_date\\" data-select2-id=\\"5810\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\" data-select2-id=\\"5811\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\" data-select2-id=\\"5812\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\" data-select2-id=\\"5813\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\" data-select2-id=\\"5814\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\" data-select2-id=\\"5815\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\" data-select2-id=\\"5816\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\" data-select2-id=\\"5817\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\" data-select2-id=\\"5818\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\" data-select2-id=\\"5819\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\" data-select2-id=\\"5820\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\" data-select2-id=\\"5821\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\" data-select2-id=\\"5822\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\" data-select2-id=\\"5823\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\" data-select2-id=\\"5824\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\" data-select2-id=\\"5825\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\" data-select2-id=\\"5826\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\" data-select2-id=\\"5827\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\" data-select2-id=\\"5828\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\" data-select2-id=\\"5829\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\" data-select2-id=\\"5830\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\" data-select2-id=\\"5831\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\" data-select2-id=\\"5832\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\" data-select2-id=\\"5833\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\" data-select2-id=\\"5834\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\" data-select2-id=\\"5835\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\" data-select2-id=\\"5836\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\" data-select2-id=\\"5837\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"7169\\" style=\\"width: 139.55px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-ju-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-ju-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1887\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"1889\\">==</option>\\r\\n <option value=\\"!=\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"7170\\" style=\\"width: 59.7125px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-f7-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-f7-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\" data-select2-id=\\"5846\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" data-select2-id=\\"6125\\" tabindex=\\"-1\\" class=\\"w-100 select2-hidden-accessible\\" aria-hidden=\\"true\\"><option value=\\"5\\" data-select2-id=\\"6127\\">Intern Casual Leave</option><option value=\\"4\\" data-select2-id=\\"6129\\" selected=\\"selected\\">Casual Leave</option><option value=\\"3\\" data-select2-id=\\"6130\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default select2-container--above select2-container--focus\\" dir=\\"ltr\\" data-select2-id=\\"7171\\" style=\\"width: 171.163px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-b0-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-b0-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Intern Casual Leave\\">Intern Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"3071\\">\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1895\\">\\r\\n <option value=\\"and\\" selected=\\"selected\\" data-select2-id=\\"1897\\">And</option>\\r\\n <option value=\\"or\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"7172\\" style=\\"width: 60.5875px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-r2-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-r2-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"And\\">And</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr></tbody></table></form>", "<form id=\\"multipleConditionForm\\" data-select2-id=\\"multipleConditionForm\\"><table id=\\"multipleConditionTable\\" data-select2-id=\\"multipleConditionTable\\">\\r\\n <tbody data-select2-id=\\"1053\\"><tr>\\r\\n <th>Code</th>\\r\\n <th>Field</th>\\r\\n <th>Condition</th>\\r\\n <th>Value</th>\\r\\n <th>Logic</th>\\r\\n <th>\\r\\n Action\\r\\n <span title=\\"Reload\\" onclick=\\"$('[name=model]').change()\\">\\r\\n <ion-icon name=\\"refresh-circle\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"refresh circle\\"></ion-icon>\\r\\n </span>\\r\\n </th>\\r\\n </tr>\\r\\n <tr class=\\"dynamic-condition-row\\" data-select2-id=\\"3072\\">\\r\\n <td class=\\"sn\\">C1</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\" data-select2-id=\\"7155\\"><option value=\\"automation_multiple_is_active\\">Is Active</option><option value=\\"automation_multiple_employee_id\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" selected=\\"selected\\" data-select2-id=\\"7157\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\">Description</option><option value=\\"automation_multiple_attachment\\">Attachment</option><option value=\\"automation_multiple_status\\">Status</option><option value=\\"automation_multiple_requested_date\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"7270\\" style=\\"width: 126.225px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-95-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-95-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"7159\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"7161\\">==</option>\\r\\n <option value=\\"!=\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"7272\\" style=\\"width: 59.7125px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-zx-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-zx-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\" data-select2-id=\\"5846\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" tabindex=\\"-1\\" class=\\"select2-hidden-accessible\\" aria-hidden=\\"true\\" data-select2-id=\\"7162\\"><option value=\\"5\\">Intern Casual Leave</option><option value=\\"4\\" selected=\\"selected\\" data-select2-id=\\"7164\\">Casual Leave</option><option value=\\"3\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"7275\\" style=\\"width: 176.8px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-ks-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-ks-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Casual Leave\\">Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"3071\\">\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"7166\\">\\r\\n <option value=\\"and\\" data-select2-id=\\"7168\\">And</option>\\r\\n <option value=\\"or\\" data-select2-id=\\"8313\\" selected=\\"selected\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default select2-container--below\\" dir=\\"ltr\\" data-select2-id=\\"7277\\" style=\\"width: 39.525px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-hf-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-hf-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Or\\">Or</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr>\\r\\n \\r\\n \\r\\n \\r\\n <tr class=\\"dynamic-condition-row\\" data-select2-id=\\"3072\\">\\r\\n <td class=\\"sn\\">C2</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\" data-select2-id=\\"1883\\"><option value=\\"automation_multiple_is_active\\" data-select2-id=\\"5751\\">Is Active</option><option value=\\"automation_multiple_employee_id\\" data-select2-id=\\"5752\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\" data-select2-id=\\"5753\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\" data-select2-id=\\"5754\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\" data-select2-id=\\"5755\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\" data-select2-id=\\"5756\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\" data-select2-id=\\"5757\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\" data-select2-id=\\"5758\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\" data-select2-id=\\"5759\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\" data-select2-id=\\"5760\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\" data-select2-id=\\"5761\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\" data-select2-id=\\"5762\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\" data-select2-id=\\"5763\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\" data-select2-id=\\"5764\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\" data-select2-id=\\"5765\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\" data-select2-id=\\"5766\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\" data-select2-id=\\"5767\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\" data-select2-id=\\"5768\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\" data-select2-id=\\"5769\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\" data-select2-id=\\"5770\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\" data-select2-id=\\"5771\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\" data-select2-id=\\"5772\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\" data-select2-id=\\"5773\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\" data-select2-id=\\"5774\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\" data-select2-id=\\"5775\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" data-select2-id=\\"1885\\" selected=\\"selected\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\" data-select2-id=\\"5776\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\" data-select2-id=\\"5777\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\" data-select2-id=\\"5778\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\" data-select2-id=\\"5779\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\" data-select2-id=\\"5780\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\" data-select2-id=\\"5781\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\" data-select2-id=\\"5782\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\" data-select2-id=\\"5783\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\" data-select2-id=\\"5784\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\" data-select2-id=\\"5785\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\" data-select2-id=\\"5786\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\" data-select2-id=\\"5787\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\" data-select2-id=\\"5788\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\" data-select2-id=\\"5789\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\" data-select2-id=\\"5790\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\" data-select2-id=\\"5791\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\" data-select2-id=\\"5792\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\" data-select2-id=\\"5793\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\" data-select2-id=\\"5794\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\" data-select2-id=\\"5795\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\" data-select2-id=\\"5796\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\" data-select2-id=\\"5797\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\" data-select2-id=\\"5798\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\" data-select2-id=\\"5799\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\" data-select2-id=\\"5800\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\" data-select2-id=\\"5801\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\" data-select2-id=\\"5802\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\" data-select2-id=\\"5803\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\" data-select2-id=\\"5804\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\" data-select2-id=\\"5805\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\" data-select2-id=\\"5806\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\" data-select2-id=\\"5807\\">Description</option><option value=\\"automation_multiple_attachment\\" data-select2-id=\\"5808\\">Attachment</option><option value=\\"automation_multiple_status\\" data-select2-id=\\"5809\\">Status</option><option value=\\"automation_multiple_requested_date\\" data-select2-id=\\"5810\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\" data-select2-id=\\"5811\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\" data-select2-id=\\"5812\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\" data-select2-id=\\"5813\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\" data-select2-id=\\"5814\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\" data-select2-id=\\"5815\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\" data-select2-id=\\"5816\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\" data-select2-id=\\"5817\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\" data-select2-id=\\"5818\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\" data-select2-id=\\"5819\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\" data-select2-id=\\"5820\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\" data-select2-id=\\"5821\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\" data-select2-id=\\"5822\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\" data-select2-id=\\"5823\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\" data-select2-id=\\"5824\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\" data-select2-id=\\"5825\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\" data-select2-id=\\"5826\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\" data-select2-id=\\"5827\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\" data-select2-id=\\"5828\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\" data-select2-id=\\"5829\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\" data-select2-id=\\"5830\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\" data-select2-id=\\"5831\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\" data-select2-id=\\"5832\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\" data-select2-id=\\"5833\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\" data-select2-id=\\"5834\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\" data-select2-id=\\"5835\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\" data-select2-id=\\"5836\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\" data-select2-id=\\"5837\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default select2-container--above\\" dir=\\"ltr\\" data-select2-id=\\"7278\\" style=\\"width: 155.8px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-xr-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-xr-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"8309\\">\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1887\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"1889\\">==</option>\\r\\n <option value=\\"!=\\" data-select2-id=\\"8310\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default select2-container--below\\" dir=\\"ltr\\" data-select2-id=\\"7280\\" style=\\"width: 62.0625px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-nb-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-nb-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\" data-select2-id=\\"5846\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" data-select2-id=\\"6125\\" tabindex=\\"-1\\" class=\\"w-100 select2-hidden-accessible\\" aria-hidden=\\"true\\"><option value=\\"5\\" data-select2-id=\\"6127\\">Intern Casual Leave</option><option value=\\"4\\" data-select2-id=\\"6129\\" selected=\\"selected\\">Casual Leave</option><option value=\\"3\\" data-select2-id=\\"6130\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default select2-container--above select2-container--focus\\" dir=\\"ltr\\" data-select2-id=\\"7281\\" style=\\"width: 183.288px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-4h-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-4h-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Intern Casual Leave\\">Intern Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"3071\\">\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1895\\">\\r\\n <option value=\\"and\\" data-select2-id=\\"1897\\">And</option>\\r\\n <option value=\\"or\\" data-select2-id=\\"7182\\" selected=\\"selected\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default select2-container--below\\" dir=\\"ltr\\" data-select2-id=\\"7282\\" style=\\"width: 64.2375px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-8g-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-8g-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Or\\">Or</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr></tbody></table></form>"], "condition_html": ["<table id=\\"multipleConditionTable\\" data-select2-id=\\"multipleConditionTable\\">\\r\\n <tbody data-select2-id=\\"1053\\"><tr>\\r\\n <th>Code</th>\\r\\n <th>Field</th>\\r\\n <th>Condition</th>\\r\\n <th>Value</th>\\r\\n <th>Logic</th>\\r\\n <th>\\r\\n Action\\r\\n <span title=\\"Reload\\" onclick=\\"$('[name=model]').change()\\">\\r\\n <ion-icon name=\\"refresh-circle\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"refresh circle\\"></ion-icon>\\r\\n </span>\\r\\n </th>\\r\\n </tr>\\r\\n <tr class=\\"dynamic-condition-row\\" data-select2-id=\\"3072\\">\\r\\n <td class=\\"sn\\">C1</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\" data-select2-id=\\"7155\\"><option value=\\"automation_multiple_is_active\\">Is Active</option><option value=\\"automation_multiple_employee_id\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" selected=\\"selected\\" data-select2-id=\\"7157\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\">Description</option><option value=\\"automation_multiple_attachment\\">Attachment</option><option value=\\"automation_multiple_status\\">Status</option><option value=\\"automation_multiple_requested_date\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"7156\\" style=\\"width: 128.375px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-o4-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-o4-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"7159\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"7161\\">==</option>\\r\\n <option value=\\"!=\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"7160\\" style=\\"width: 59.7125px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-ku-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-ku-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\" data-select2-id=\\"5846\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" tabindex=\\"-1\\" class=\\"select2-hidden-accessible\\" aria-hidden=\\"true\\" data-select2-id=\\"7162\\"><option value=\\"5\\">Intern Casual Leave</option><option value=\\"4\\" selected=\\"selected\\" data-select2-id=\\"7164\\">Casual Leave</option><option value=\\"3\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"7163\\" style=\\"width: 176.8px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-3a-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-3a-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Casual Leave\\">Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"3071\\">\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"7166\\">\\r\\n <option value=\\"and\\" selected=\\"selected\\" data-select2-id=\\"7168\\">And</option>\\r\\n <option value=\\"or\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"7167\\" style=\\"width: 38.325px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-l3-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-l3-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"And\\">And</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr>\\r\\n \\r\\n \\r\\n \\r\\n <tr class=\\"dynamic-condition-row\\" data-select2-id=\\"3072\\">\\r\\n <td class=\\"sn\\">C2</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\" data-select2-id=\\"1883\\"><option value=\\"automation_multiple_is_active\\" data-select2-id=\\"5751\\">Is Active</option><option value=\\"automation_multiple_employee_id\\" data-select2-id=\\"5752\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\" data-select2-id=\\"5753\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\" data-select2-id=\\"5754\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\" data-select2-id=\\"5755\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\" data-select2-id=\\"5756\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\" data-select2-id=\\"5757\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\" data-select2-id=\\"5758\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\" data-select2-id=\\"5759\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\" data-select2-id=\\"5760\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\" data-select2-id=\\"5761\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\" data-select2-id=\\"5762\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\" data-select2-id=\\"5763\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\" data-select2-id=\\"5764\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\" data-select2-id=\\"5765\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\" data-select2-id=\\"5766\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\" data-select2-id=\\"5767\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\" data-select2-id=\\"5768\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\" data-select2-id=\\"5769\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\" data-select2-id=\\"5770\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\" data-select2-id=\\"5771\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\" data-select2-id=\\"5772\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\" data-select2-id=\\"5773\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\" data-select2-id=\\"5774\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\" data-select2-id=\\"5775\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" data-select2-id=\\"1885\\" selected=\\"selected\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\" data-select2-id=\\"5776\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\" data-select2-id=\\"5777\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\" data-select2-id=\\"5778\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\" data-select2-id=\\"5779\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\" data-select2-id=\\"5780\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\" data-select2-id=\\"5781\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\" data-select2-id=\\"5782\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\" data-select2-id=\\"5783\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\" data-select2-id=\\"5784\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\" data-select2-id=\\"5785\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\" data-select2-id=\\"5786\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\" data-select2-id=\\"5787\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\" data-select2-id=\\"5788\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\" data-select2-id=\\"5789\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\" data-select2-id=\\"5790\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\" data-select2-id=\\"5791\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\" data-select2-id=\\"5792\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\" data-select2-id=\\"5793\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\" data-select2-id=\\"5794\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\" data-select2-id=\\"5795\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\" data-select2-id=\\"5796\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\" data-select2-id=\\"5797\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\" data-select2-id=\\"5798\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\" data-select2-id=\\"5799\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\" data-select2-id=\\"5800\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\" data-select2-id=\\"5801\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\" data-select2-id=\\"5802\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\" data-select2-id=\\"5803\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\" data-select2-id=\\"5804\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\" data-select2-id=\\"5805\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\" data-select2-id=\\"5806\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\" data-select2-id=\\"5807\\">Description</option><option value=\\"automation_multiple_attachment\\" data-select2-id=\\"5808\\">Attachment</option><option value=\\"automation_multiple_status\\" data-select2-id=\\"5809\\">Status</option><option value=\\"automation_multiple_requested_date\\" data-select2-id=\\"5810\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\" data-select2-id=\\"5811\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\" data-select2-id=\\"5812\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\" data-select2-id=\\"5813\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\" data-select2-id=\\"5814\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\" data-select2-id=\\"5815\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\" data-select2-id=\\"5816\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\" data-select2-id=\\"5817\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\" data-select2-id=\\"5818\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\" data-select2-id=\\"5819\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\" data-select2-id=\\"5820\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\" data-select2-id=\\"5821\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\" data-select2-id=\\"5822\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\" data-select2-id=\\"5823\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\" data-select2-id=\\"5824\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\" data-select2-id=\\"5825\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\" data-select2-id=\\"5826\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\" data-select2-id=\\"5827\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\" data-select2-id=\\"5828\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\" data-select2-id=\\"5829\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\" data-select2-id=\\"5830\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\" data-select2-id=\\"5831\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\" data-select2-id=\\"5832\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\" data-select2-id=\\"5833\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\" data-select2-id=\\"5834\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\" data-select2-id=\\"5835\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\" data-select2-id=\\"5836\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\" data-select2-id=\\"5837\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"7169\\" style=\\"width: 139.55px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-ju-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-ju-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1887\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"1889\\">==</option>\\r\\n <option value=\\"!=\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"7170\\" style=\\"width: 59.7125px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-f7-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-f7-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\" data-select2-id=\\"5846\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" data-select2-id=\\"6125\\" tabindex=\\"-1\\" class=\\"w-100 select2-hidden-accessible\\" aria-hidden=\\"true\\"><option value=\\"5\\" data-select2-id=\\"6127\\">Intern Casual Leave</option><option value=\\"4\\" data-select2-id=\\"6129\\" selected=\\"selected\\">Casual Leave</option><option value=\\"3\\" data-select2-id=\\"6130\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default select2-container--above\\" dir=\\"ltr\\" data-select2-id=\\"7171\\" style=\\"width: 171.163px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-b0-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-b0-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Intern Casual Leave\\">Intern Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"3071\\">\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1895\\">\\r\\n <option value=\\"and\\" selected=\\"selected\\" data-select2-id=\\"1897\\">And</option>\\r\\n <option value=\\"or\\" data-select2-id=\\"7182\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default select2-container--below\\" dir=\\"ltr\\" data-select2-id=\\"7172\\" style=\\"width: 60.5875px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-r2-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-r2-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"And\\">And</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr></tbody></table>", "<table id=\\"multipleConditionTable\\" data-select2-id=\\"multipleConditionTable\\">\\r\\n <tbody data-select2-id=\\"1053\\"><tr>\\r\\n <th>Code</th>\\r\\n <th>Field</th>\\r\\n <th>Condition</th>\\r\\n <th>Value</th>\\r\\n <th>Logic</th>\\r\\n <th>\\r\\n Action\\r\\n <span title=\\"Reload\\" onclick=\\"$('[name=model]').change()\\">\\r\\n <ion-icon name=\\"refresh-circle\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"refresh circle\\"></ion-icon>\\r\\n </span>\\r\\n </th>\\r\\n </tr>\\r\\n <tr class=\\"dynamic-condition-row\\" data-select2-id=\\"3072\\">\\r\\n <td class=\\"sn\\">C1</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\" data-select2-id=\\"7155\\"><option value=\\"automation_multiple_is_active\\">Is Active</option><option value=\\"automation_multiple_employee_id\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" selected=\\"selected\\" data-select2-id=\\"7157\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\">Description</option><option value=\\"automation_multiple_attachment\\">Attachment</option><option value=\\"automation_multiple_status\\">Status</option><option value=\\"automation_multiple_requested_date\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"7270\\" style=\\"width: 126.225px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-95-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-95-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"7159\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"7161\\">==</option>\\r\\n <option value=\\"!=\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"7272\\" style=\\"width: 59.7125px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-zx-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-zx-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\" data-select2-id=\\"5846\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" tabindex=\\"-1\\" class=\\"select2-hidden-accessible\\" aria-hidden=\\"true\\" data-select2-id=\\"7162\\"><option value=\\"5\\">Intern Casual Leave</option><option value=\\"4\\" selected=\\"selected\\" data-select2-id=\\"7164\\">Casual Leave</option><option value=\\"3\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"7275\\" style=\\"width: 176.8px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-ks-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-ks-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Casual Leave\\">Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"3071\\">\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"7166\\">\\r\\n <option value=\\"and\\" data-select2-id=\\"7168\\">And</option>\\r\\n <option value=\\"or\\" data-select2-id=\\"8313\\" selected=\\"selected\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default select2-container--below\\" dir=\\"ltr\\" data-select2-id=\\"7277\\" style=\\"width: 39.525px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-hf-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-hf-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Or\\">Or</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr>\\r\\n \\r\\n \\r\\n \\r\\n <tr class=\\"dynamic-condition-row\\" data-select2-id=\\"3072\\">\\r\\n <td class=\\"sn\\">C2</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\" data-select2-id=\\"1883\\"><option value=\\"automation_multiple_is_active\\" data-select2-id=\\"5751\\">Is Active</option><option value=\\"automation_multiple_employee_id\\" data-select2-id=\\"5752\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\" data-select2-id=\\"5753\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\" data-select2-id=\\"5754\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\" data-select2-id=\\"5755\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\" data-select2-id=\\"5756\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\" data-select2-id=\\"5757\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\" data-select2-id=\\"5758\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\" data-select2-id=\\"5759\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\" data-select2-id=\\"5760\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\" data-select2-id=\\"5761\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\" data-select2-id=\\"5762\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\" data-select2-id=\\"5763\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\" data-select2-id=\\"5764\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\" data-select2-id=\\"5765\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\" data-select2-id=\\"5766\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\" data-select2-id=\\"5767\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\" data-select2-id=\\"5768\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\" data-select2-id=\\"5769\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\" data-select2-id=\\"5770\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\" data-select2-id=\\"5771\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\" data-select2-id=\\"5772\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\" data-select2-id=\\"5773\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\" data-select2-id=\\"5774\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\" data-select2-id=\\"5775\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" data-select2-id=\\"1885\\" selected=\\"selected\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\" data-select2-id=\\"5776\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\" data-select2-id=\\"5777\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\" data-select2-id=\\"5778\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\" data-select2-id=\\"5779\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\" data-select2-id=\\"5780\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\" data-select2-id=\\"5781\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\" data-select2-id=\\"5782\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\" data-select2-id=\\"5783\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\" data-select2-id=\\"5784\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\" data-select2-id=\\"5785\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\" data-select2-id=\\"5786\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\" data-select2-id=\\"5787\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\" data-select2-id=\\"5788\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\" data-select2-id=\\"5789\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\" data-select2-id=\\"5790\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\" data-select2-id=\\"5791\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\" data-select2-id=\\"5792\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\" data-select2-id=\\"5793\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\" data-select2-id=\\"5794\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\" data-select2-id=\\"5795\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\" data-select2-id=\\"5796\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\" data-select2-id=\\"5797\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\" data-select2-id=\\"5798\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\" data-select2-id=\\"5799\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\" data-select2-id=\\"5800\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\" data-select2-id=\\"5801\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\" data-select2-id=\\"5802\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\" data-select2-id=\\"5803\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\" data-select2-id=\\"5804\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\" data-select2-id=\\"5805\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\" data-select2-id=\\"5806\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\" data-select2-id=\\"5807\\">Description</option><option value=\\"automation_multiple_attachment\\" data-select2-id=\\"5808\\">Attachment</option><option value=\\"automation_multiple_status\\" data-select2-id=\\"5809\\">Status</option><option value=\\"automation_multiple_requested_date\\" data-select2-id=\\"5810\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\" data-select2-id=\\"5811\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\" data-select2-id=\\"5812\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\" data-select2-id=\\"5813\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\" data-select2-id=\\"5814\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\" data-select2-id=\\"5815\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\" data-select2-id=\\"5816\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\" data-select2-id=\\"5817\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\" data-select2-id=\\"5818\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\" data-select2-id=\\"5819\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\" data-select2-id=\\"5820\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\" data-select2-id=\\"5821\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\" data-select2-id=\\"5822\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\" data-select2-id=\\"5823\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\" data-select2-id=\\"5824\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\" data-select2-id=\\"5825\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\" data-select2-id=\\"5826\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\" data-select2-id=\\"5827\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\" data-select2-id=\\"5828\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\" data-select2-id=\\"5829\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\" data-select2-id=\\"5830\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\" data-select2-id=\\"5831\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\" data-select2-id=\\"5832\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\" data-select2-id=\\"5833\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\" data-select2-id=\\"5834\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\" data-select2-id=\\"5835\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\" data-select2-id=\\"5836\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\" data-select2-id=\\"5837\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default select2-container--above\\" dir=\\"ltr\\" data-select2-id=\\"7278\\" style=\\"width: 155.8px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-xr-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-xr-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"8309\\">\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1887\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"1889\\">==</option>\\r\\n <option value=\\"!=\\" data-select2-id=\\"8310\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default select2-container--below\\" dir=\\"ltr\\" data-select2-id=\\"7280\\" style=\\"width: 62.0625px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-nb-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-nb-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\" data-select2-id=\\"5846\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" data-select2-id=\\"6125\\" tabindex=\\"-1\\" class=\\"w-100 select2-hidden-accessible\\" aria-hidden=\\"true\\"><option value=\\"5\\" data-select2-id=\\"6127\\">Intern Casual Leave</option><option value=\\"4\\" data-select2-id=\\"6129\\" selected=\\"selected\\">Casual Leave</option><option value=\\"3\\" data-select2-id=\\"6130\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default select2-container--above\\" dir=\\"ltr\\" data-select2-id=\\"7281\\" style=\\"width: 183.288px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-4h-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-4h-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Intern Casual Leave\\">Intern Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"3071\\">\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1895\\">\\r\\n <option value=\\"and\\" data-select2-id=\\"1897\\">And</option>\\r\\n <option value=\\"or\\" data-select2-id=\\"7182\\" selected=\\"selected\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default select2-container--below\\" dir=\\"ltr\\" data-select2-id=\\"7282\\" style=\\"width: 64.2375px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-8g-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-8g-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Or\\">Or</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr></tbody></table>"], "condition_querystring": ["automation_multiple_condition=automation_multiple_leave_type_id&condition=%3D%3D&automation_multiple_condition=4&logic=and&automation_multiple_condition=automation_multiple_leave_type_id&condition=%3D%3D&automation_multiple_condition=5&logic=and", "automation_multiple_condition=automation_multiple_leave_type_id&condition=%3D%3D&automation_multiple_condition=4&logic=or&automation_multiple_condition=automation_multiple_leave_type_id&condition=%3D%3D&automation_multiple_condition=5&logic=or"]} 2025-02-03 10:41:33.696933+00 273 193 122.176.134.248 \N \N \N
4873 19 19 Eshu Arora (GN0147) | Casual Leave | requested as of 2025-02-03 10:42:02.335422+00:00 0 {"id": ["None", "10"], "status": ["None", "requested"], "end_date": ["None", "2025-02-03"], "is_active": ["None", "True"], "attachment": ["None", ""], "created_at": ["None", "2025-02-03 10:42:02.331633"], "created_by": ["None", "277"], "history_id": ["None", "19"], "start_date": ["None", "2025-02-03"], "description": ["None", "no"], "employee_id": ["None", "277"], "modified_by": ["None", "515"], "history_date": ["None", "2025-02-03 10:42:02.335422"], "history_type": ["None", "+"], "history_user": ["None", "515"], "leave_type_id": ["None", "4"], "reject_reason": ["None", ""], "requested_date": ["None", "2025-02-03 10:42:02.206996+00:00"], "requested_days": ["None", "0.5"], "history_relation": ["None", "10"], "history_highlight": ["None", "False"], "end_date_breakdown": ["None", "first_half"], "leave_clashes_count": ["None", "0"], "start_date_breakdown": ["None", "first_half"], "approved_available_days": ["None", "0"], "approved_carryforward_days": ["None", "0"]} 2025-02-03 10:42:02.347237+00 515 102 122.176.134.248 \N \N \N
4874 10 10 Eshu Arora (GN0147) | Casual Leave | requested 0 {"id": ["None", "10"], "status": ["None", "requested"], "end_date": ["None", "2025-02-03"], "is_active": ["None", "True"], "attachment": ["None", ""], "created_at": ["None", "2025-02-03 10:42:02.331633"], "created_by": ["None", "277"], "start_date": ["None", "2025-02-03"], "description": ["None", "no"], "employee_id": ["None", "277"], "history_set": ["None", "leave.HistoricalLeaveRequest.None"], "modified_by": ["None", "515"], "leave_type_id": ["None", "4"], "reject_reason": ["None", ""], "requested_date": ["None", "2025-02-03 10:42:02.206996+00:00"], "requested_days": ["None", "0.5"], "end_date_breakdown": ["None", "first_half"], "leave_clashes_count": ["None", "0"], "start_date_breakdown": ["None", "first_half"], "approved_available_days": ["None", "0"], "approved_carryforward_days": ["None", "0"]} 2025-02-03 10:42:02.372036+00 515 92 122.176.134.248 \N \N \N
4875 77 77 Eshu Arora (GN0147) | Casual Leave as of 2025-02-03 10:42:02.412065+00:00 0 {"id": ["None", "33"], "is_active": ["None", "True"], "created_at": ["None", "2025-02-03 10:21:52.156547"], "history_id": ["None", "77"], "reset_date": ["None", "2025-12-31"], "employee_id": ["None", "277"], "history_date": ["None", "2025-02-03 10:42:02.412065"], "history_type": ["None", "~"], "assigned_date": ["None", "2025-02-03"], "leave_type_id": ["None", "4"], "available_days": ["None", "6.0"], "history_relation": ["None", "33"], "total_leave_days": ["None", "6.0"], "carryforward_days": ["None", "0.0"], "history_highlight": ["None", "False"]} 2025-02-03 10:42:02.424051+00 \N 105 \N \N \N \N
4876 22 22 EmailLog object (22) 0 {"id": ["None", "22"], "to": ["None", "['eshu.arora@growthnatives.com']"], "body": ["None", "\\n<!DOCTYPE html>\\n<html lang=\\"en\\">\\n <head>\\n <meta charset=\\"UTF-8\\" />\\n <meta http-equiv=\\"X-UA-Compatible\\" content=\\"IE=edge\\" />\\n <meta name=\\"viewport\\" content=\\"width=device-width, initial-scale=1.0\\" />\\n <title>Growth Natives News Letter Design</title>\\n\\n <style>\\n body {\\n margin: 0;\\n background-color: #e5e5e5;\\n }\\n\\n table {\\n border-spacing: 0;\\n }\\n\\n td {\\n padding: 0;\\n }\\n\\n img {\\n border: 0;\\n }\\n\\n .hr-wrapper {\\n width: 100%;\\n table-layout: fixed;\\n background-color: #e5e5e5;\\n padding-bottom: 60px;\\n }\\n\\n .hr-table-main {\\n background-color: #fff;\\n margin: 0 auto;\\n width: 100%;\\n max-width: 650px;\\n border-spacing: 0;\\n font-family: Arial, \\"Helvetica Neue\\", Helvetica, sans-serif;\\n color: #1c1c1c;\\n margin-top: 15px;\\n }\\n\\n .hr-table-main__header {\\n table-layout: fixed;\\n padding: 15px;\\n width: 100%;\\n }\\n\\n .hr-link {\\n color: #6f6f6f;\\n font-size: 12px;\\n }\\n\\n .hr-callout-table {\\n table-layout: fixed;\\n width: 100%;\\n border: 1px solid #f0f0f0;\\n font-size: 14px;\\n }\\n\\n .hr-callout-table td {\\n padding: 10px;\\n background-color: #fafafa;\\n }\\n </style>\\n </head>\\n\\n <body>\\n <center class=\\"hr-wrapper\\">\\n <table class=\\"hr-table-main\\" width=\\"100%\\" style=\\"margin-top: 60px\\">\\n <tr>\\n <td>\\n <table class=\\"hr-table-main__header\\">\\n <tr>\\n <td align=\\"center\\" style=\\"width: 50%;\\">\\n <img\\n src=\\"https://erp.demandtech.org/static/images/ui/growthnatives.png\\"\\n height=\\"40\\"\\n width=\\"120.4\\"\\n />\\n </td>\\n <td style=\\"width: 50%; text-align: right; display:none;\\">\\n <a href=\\"#\\" class=\\"hr-link\\"\\n >View in browser</a\\n >\\n </td>\\n </tr>\\n </table>\\n </td>\\n </tr>\\n <tr>\\n <td\\n align=\\"center\\"\\n style=\\"padding-top: 20px; padding-bottom: 20px; display: none;\\"\\n >\\n <img\\n src=\\"https://erp.demandtech.org/static/images/ui/leave.svg\\"\\n style=\\"\\n display: block;\\n height: auto;\\n border: 0;\\n width: 20%;\\n \\"\\n width=\\"272\\"\\n />\\n </td>\\n </tr>\\n <tr>\\n <td\\n style=\\"padding: 15px 25px 0 25px; font-size: 24px\\"\\n align=\\"center\\"\\n >\\n <strong\\n >Hello Eshu Arora,\\n Leave request created successfully!</strong\\n >\\n </td>\\n </tr>\\n <tr>\\n <td align=\\"center\\" style=\\"padding-top: 0px\\">\\n <p style=\\"width: 90%\\">This is to inform you that the leave request you created has been successfully logged into our system. The manager will now take the necessary actions to address leave request. Should you have any additional information or updates, please feel free to communicate directly with the None.</p>\\n </td>\\n </tr>\\n \\n <tr>\\n <td style=\\"padding: 15px\\" align=\\"center\\">\\n <a\\n href=\\"https://erp.demandtech.org/leave/request-view/?id=10\\"\\n style=\\"\\n background-color: #e54f37;\\n color: #fff;\\n border-radius: 10px;\\n display: inline-block;\\n padding: 15px 25px;\\n text-decoration: none;\\n font-weight: bold;\\n \\"\\n >View Leave Request</a\\n >\\n </td>\\n </tr>\\n \\n\\n <tr>\\n <td\\n align=\\"center\\"\\n style=\\"\\n padding-left: 15px;\\n padding-right: 15px;\\n padding-top: 30px;\\n padding-bottom: 15px;\\n color: #5c5c5c;\\n font-size: 12px;\\n \\"\\n >\\n This mail was sent you because your email has been\\n enrolled as an employee at .<br />\\n Don't want to receive mails like these anymore?\\n <a href=\\"#\\" style=\\"color: #5c5c5c\\">Unsubscribe here</a>.\\n </td>\\n </tr>\\n <tr>\\n <td\\n align=\\"center\\"\\n style=\\"\\n padding-left: 15px;\\n padding-right: 15px;\\n padding-bottom: 10px;\\n padding-top: 10px;\\n color: #5c5c5c;\\n font-size: 12px;\\n \\"\\n >\\n © 2025 GrowthNatives , Inc.\\n </td>\\n </tr>\\n </table>\\n </center>\\n </body>\\n</html>\\n"], "status": ["None", "sent"], "subject": ["None", "Leave request created successfully"], "created_at": ["None", "2025-02-03 10:42:04.061976"], "from_email": ["None", "info viva india.team <info@growthnatives.com>"]} 2025-02-03 10:42:04.065312+00 \N 23 \N \N \N \N
4877 3 3 Leave Request 1 {"condition": ["<form id=\\"multipleConditionForm\\" data-select2-id=\\"multipleConditionForm\\"><table id=\\"multipleConditionTable\\" data-select2-id=\\"multipleConditionTable\\">\\r\\n <tbody data-select2-id=\\"1053\\"><tr>\\r\\n <th>Code</th>\\r\\n <th>Field</th>\\r\\n <th>Condition</th>\\r\\n <th>Value</th>\\r\\n <th>Logic</th>\\r\\n <th>\\r\\n Action\\r\\n <span title=\\"Reload\\" onclick=\\"$('[name=model]').change()\\">\\r\\n <ion-icon name=\\"refresh-circle\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"refresh circle\\"></ion-icon>\\r\\n </span>\\r\\n </th>\\r\\n </tr>\\r\\n <tr class=\\"dynamic-condition-row\\" data-select2-id=\\"3072\\">\\r\\n <td class=\\"sn\\">C1</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\" data-select2-id=\\"7155\\"><option value=\\"automation_multiple_is_active\\">Is Active</option><option value=\\"automation_multiple_employee_id\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" selected=\\"selected\\" data-select2-id=\\"7157\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\">Description</option><option value=\\"automation_multiple_attachment\\">Attachment</option><option value=\\"automation_multiple_status\\">Status</option><option value=\\"automation_multiple_requested_date\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"7270\\" style=\\"width: 126.225px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-95-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-95-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"7159\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"7161\\">==</option>\\r\\n <option value=\\"!=\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"7272\\" style=\\"width: 59.7125px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-zx-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-zx-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\" data-select2-id=\\"5846\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" tabindex=\\"-1\\" class=\\"select2-hidden-accessible\\" aria-hidden=\\"true\\" data-select2-id=\\"7162\\"><option value=\\"5\\">Intern Casual Leave</option><option value=\\"4\\" selected=\\"selected\\" data-select2-id=\\"7164\\">Casual Leave</option><option value=\\"3\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"7275\\" style=\\"width: 176.8px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-ks-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-ks-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Casual Leave\\">Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"3071\\">\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"7166\\">\\r\\n <option value=\\"and\\" data-select2-id=\\"7168\\">And</option>\\r\\n <option value=\\"or\\" data-select2-id=\\"8313\\" selected=\\"selected\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default select2-container--below\\" dir=\\"ltr\\" data-select2-id=\\"7277\\" style=\\"width: 39.525px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-hf-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-hf-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Or\\">Or</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr>\\r\\n \\r\\n \\r\\n \\r\\n <tr class=\\"dynamic-condition-row\\" data-select2-id=\\"3072\\">\\r\\n <td class=\\"sn\\">C2</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\" data-select2-id=\\"1883\\"><option value=\\"automation_multiple_is_active\\" data-select2-id=\\"5751\\">Is Active</option><option value=\\"automation_multiple_employee_id\\" data-select2-id=\\"5752\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\" data-select2-id=\\"5753\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\" data-select2-id=\\"5754\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\" data-select2-id=\\"5755\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\" data-select2-id=\\"5756\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\" data-select2-id=\\"5757\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\" data-select2-id=\\"5758\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\" data-select2-id=\\"5759\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\" data-select2-id=\\"5760\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\" data-select2-id=\\"5761\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\" data-select2-id=\\"5762\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\" data-select2-id=\\"5763\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\" data-select2-id=\\"5764\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\" data-select2-id=\\"5765\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\" data-select2-id=\\"5766\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\" data-select2-id=\\"5767\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\" data-select2-id=\\"5768\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\" data-select2-id=\\"5769\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\" data-select2-id=\\"5770\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\" data-select2-id=\\"5771\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\" data-select2-id=\\"5772\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\" data-select2-id=\\"5773\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\" data-select2-id=\\"5774\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\" data-select2-id=\\"5775\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" data-select2-id=\\"1885\\" selected=\\"selected\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\" data-select2-id=\\"5776\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\" data-select2-id=\\"5777\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\" data-select2-id=\\"5778\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\" data-select2-id=\\"5779\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\" data-select2-id=\\"5780\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\" data-select2-id=\\"5781\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\" data-select2-id=\\"5782\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\" data-select2-id=\\"5783\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\" data-select2-id=\\"5784\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\" data-select2-id=\\"5785\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\" data-select2-id=\\"5786\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\" data-select2-id=\\"5787\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\" data-select2-id=\\"5788\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\" data-select2-id=\\"5789\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\" data-select2-id=\\"5790\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\" data-select2-id=\\"5791\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\" data-select2-id=\\"5792\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\" data-select2-id=\\"5793\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\" data-select2-id=\\"5794\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\" data-select2-id=\\"5795\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\" data-select2-id=\\"5796\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\" data-select2-id=\\"5797\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\" data-select2-id=\\"5798\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\" data-select2-id=\\"5799\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\" data-select2-id=\\"5800\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\" data-select2-id=\\"5801\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\" data-select2-id=\\"5802\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\" data-select2-id=\\"5803\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\" data-select2-id=\\"5804\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\" data-select2-id=\\"5805\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\" data-select2-id=\\"5806\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\" data-select2-id=\\"5807\\">Description</option><option value=\\"automation_multiple_attachment\\" data-select2-id=\\"5808\\">Attachment</option><option value=\\"automation_multiple_status\\" data-select2-id=\\"5809\\">Status</option><option value=\\"automation_multiple_requested_date\\" data-select2-id=\\"5810\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\" data-select2-id=\\"5811\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\" data-select2-id=\\"5812\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\" data-select2-id=\\"5813\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\" data-select2-id=\\"5814\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\" data-select2-id=\\"5815\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\" data-select2-id=\\"5816\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\" data-select2-id=\\"5817\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\" data-select2-id=\\"5818\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\" data-select2-id=\\"5819\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\" data-select2-id=\\"5820\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\" data-select2-id=\\"5821\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\" data-select2-id=\\"5822\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\" data-select2-id=\\"5823\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\" data-select2-id=\\"5824\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\" data-select2-id=\\"5825\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\" data-select2-id=\\"5826\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\" data-select2-id=\\"5827\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\" data-select2-id=\\"5828\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\" data-select2-id=\\"5829\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\" data-select2-id=\\"5830\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\" data-select2-id=\\"5831\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\" data-select2-id=\\"5832\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\" data-select2-id=\\"5833\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\" data-select2-id=\\"5834\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\" data-select2-id=\\"5835\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\" data-select2-id=\\"5836\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\" data-select2-id=\\"5837\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default select2-container--above\\" dir=\\"ltr\\" data-select2-id=\\"7278\\" style=\\"width: 155.8px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-xr-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-xr-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"8309\\">\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1887\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"1889\\">==</option>\\r\\n <option value=\\"!=\\" data-select2-id=\\"8310\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default select2-container--below\\" dir=\\"ltr\\" data-select2-id=\\"7280\\" style=\\"width: 62.0625px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-nb-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-nb-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\" data-select2-id=\\"5846\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" data-select2-id=\\"6125\\" tabindex=\\"-1\\" class=\\"w-100 select2-hidden-accessible\\" aria-hidden=\\"true\\"><option value=\\"5\\" data-select2-id=\\"6127\\">Intern Casual Leave</option><option value=\\"4\\" data-select2-id=\\"6129\\" selected=\\"selected\\">Casual Leave</option><option value=\\"3\\" data-select2-id=\\"6130\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default select2-container--above select2-container--focus\\" dir=\\"ltr\\" data-select2-id=\\"7281\\" style=\\"width: 183.288px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-4h-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-4h-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Intern Casual Leave\\">Intern Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"3071\\">\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"1895\\">\\r\\n <option value=\\"and\\" data-select2-id=\\"1897\\">And</option>\\r\\n <option value=\\"or\\" data-select2-id=\\"7182\\" selected=\\"selected\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default select2-container--below\\" dir=\\"ltr\\" data-select2-id=\\"7282\\" style=\\"width: 64.2375px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-8g-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-8g-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Or\\">Or</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr></tbody></table></form>", "<form id=\\"multipleConditionForm\\" data-select2-id=\\"multipleConditionForm\\"><table id=\\"multipleConditionTable\\" data-select2-id=\\"multipleConditionTable\\">\\r\\n <tbody data-select2-id=\\"1053\\"><tr>\\r\\n <th>Code</th>\\r\\n <th>Field</th>\\r\\n <th>Condition</th>\\r\\n <th>Value</th>\\r\\n <th>Logic</th>\\r\\n <th>\\r\\n Action\\r\\n <span title=\\"Reload\\" onclick=\\"$('[name=model]').change()\\">\\r\\n <ion-icon name=\\"refresh-circle\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"refresh circle\\"></ion-icon>\\r\\n </span>\\r\\n </th>\\r\\n </tr>\\r\\n <tr class=\\"dynamic-condition-row\\" data-select2-id=\\"3072\\">\\r\\n <td class=\\"sn\\">C1</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\" data-select2-id=\\"7155\\"><option value=\\"automation_multiple_is_active\\">Is Active</option><option value=\\"automation_multiple_employee_id\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" selected=\\"selected\\" data-select2-id=\\"7157\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\">Description</option><option value=\\"automation_multiple_attachment\\">Attachment</option><option value=\\"automation_multiple_status\\">Status</option><option value=\\"automation_multiple_requested_date\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"8406\\" style=\\"width: 126.225px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-o8-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-o8-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"7159\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"7161\\">==</option>\\r\\n <option value=\\"!=\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"8408\\" style=\\"width: 59.7125px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-fr-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-fr-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\" data-select2-id=\\"5846\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" tabindex=\\"-1\\" class=\\"select2-hidden-accessible\\" aria-hidden=\\"true\\" data-select2-id=\\"7162\\"><option value=\\"5\\">Intern Casual Leave</option><option value=\\"4\\" selected=\\"selected\\" data-select2-id=\\"7164\\">Casual Leave</option><option value=\\"3\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"8411\\" style=\\"width: 176.8px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-w8-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-w8-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Casual Leave\\">Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"3071\\">\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"7166\\">\\r\\n <option value=\\"and\\" data-select2-id=\\"7168\\" selected=\\"selected\\">And</option>\\r\\n <option value=\\"or\\" data-select2-id=\\"8313\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default select2-container--below select2-container--focus\\" dir=\\"ltr\\" data-select2-id=\\"8412\\" style=\\"width: 39.525px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-3t-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-3t-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"And\\">And</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr>\\r\\n \\r\\n \\r\\n \\r\\n </tbody></table></form>"], "condition_html": ["<table id=\\"multipleConditionTable\\" data-select2-id=\\"multipleConditionTable\\">\\r\\n <tbody data-select2-id=\\"1053\\"><tr>\\r\\n <th>Code</th>\\r\\n <th>Field</th>\\r\\n <th>Condition</th>\\r\\n <th>Value</th>\\r\\n <th>Logic</th>\\r\\n <th>\\r\\n Action\\r\\n <span title=\\"Reload\\" onclick=\\"$('[name=model]').change()\\">\\r\\n <ion-icon name=\\"refresh-circle\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"refresh circle\\"></ion-icon>\\r\\n </span>\\r\\n </th>\\r\\n </tr>\\r\\n <tr class=\\"dynamic-condition-row\\" data-select2-id=\\"3072\\">\\r\\n <td class=\\"sn\\">C1</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_created_by__employee_first_name","type":"TextInput","label":"First name | Created By","required":true},{"name":"automation_multiple_created_by__employee_last_name","type":"TextInput","label":"Last name | Created By","required":false},{"name":"automation_multiple_created_by__employee_profile","type":"ClearableFileInput","label":"Employee profile | Created By","required":false},{"name":"automation_multiple_created_by__email","type":"EmailInput","label":"Email | Created By","required":true},{"name":"automation_multiple_created_by__phone","type":"TextInput","label":"Phone | Created By","required":true},{"name":"automation_multiple_created_by__address","type":"Textarea","label":"Address | Created By","required":false},{"name":"automation_multiple_created_by__country","type":"TextInput","label":"Country | Created By","required":false},{"name":"automation_multiple_created_by__state","type":"TextInput","label":"State | Created By","required":false},{"name":"automation_multiple_created_by__city","type":"TextInput","label":"City | Created By","required":false},{"name":"automation_multiple_created_by__zip","type":"TextInput","label":"Zip | Created By","required":false},{"name":"automation_multiple_created_by__dob","type":"DateInput","label":"Dob | Created By","required":false},{"name":"automation_multiple_created_by__gender","type":"Select","label":"Gender | Created By","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_created_by__qualification","type":"TextInput","label":"Qualification | Created By","required":false},{"name":"automation_multiple_created_by__experience","type":"NumberInput","label":"Experience | Created By","required":false},{"name":"automation_multiple_created_by__marital_status","type":"Select","label":"Marital status | Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_created_by__children","type":"NumberInput","label":"Children | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact","type":"TextInput","label":"Emergency contact | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Created By","required":false},{"name":"automation_multiple_created_by__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Created By","required":false},{"name":"automation_multiple_created_by__is_active","type":"CheckboxInput","label":"Is active | Created By","required":false},{"name":"automation_multiple_created_by__additional_info","type":"Textarea","label":"Additional info | Created By","required":false}]\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" name=\\"automation_multiple_condition\\" data-select2-id=\\"7155\\"><option value=\\"automation_multiple_is_active\\">Is Active</option><option value=\\"automation_multiple_employee_id\\">Employee</option><option value=\\"automation_multiple_employee_id__badge_id\\">Badge id | Employee</option><option value=\\"automation_multiple_employee_id__employee_user_id\\">User | Employee</option><option value=\\"automation_multiple_employee_id__employee_first_name\\">First name | Employee</option><option value=\\"automation_multiple_employee_id__employee_last_name\\">Last name | Employee</option><option value=\\"automation_multiple_employee_id__employee_profile\\">Employee profile | Employee</option><option value=\\"automation_multiple_employee_id__email\\">Email | Employee</option><option value=\\"automation_multiple_employee_id__phone\\">Phone | Employee</option><option value=\\"automation_multiple_employee_id__address\\">Address | Employee</option><option value=\\"automation_multiple_employee_id__country\\">Country | Employee</option><option value=\\"automation_multiple_employee_id__state\\">State | Employee</option><option value=\\"automation_multiple_employee_id__city\\">City | Employee</option><option value=\\"automation_multiple_employee_id__zip\\">Zip | Employee</option><option value=\\"automation_multiple_employee_id__dob\\">Dob | Employee</option><option value=\\"automation_multiple_employee_id__gender\\">Gender | Employee</option><option value=\\"automation_multiple_employee_id__qualification\\">Qualification | Employee</option><option value=\\"automation_multiple_employee_id__experience\\">Experience | Employee</option><option value=\\"automation_multiple_employee_id__marital_status\\">Marital status | Employee</option><option value=\\"automation_multiple_employee_id__children\\">Children | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact\\">Emergency contact | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_name\\">Emergency contact name | Employee</option><option value=\\"automation_multiple_employee_id__emergency_contact_relation\\">Emergency contact relation | Employee</option><option value=\\"automation_multiple_employee_id__is_active\\">Is active | Employee</option><option value=\\"automation_multiple_employee_id__additional_info\\">Additional info | Employee</option><option value=\\"automation_multiple_leave_type_id\\" selected=\\"selected\\" data-select2-id=\\"7157\\">Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_active\\">Is active | Leave Type</option><option value=\\"automation_multiple_leave_type_id__icon\\">Icon | Leave Type</option><option value=\\"automation_multiple_leave_type_id__name\\">Name | Leave Type</option><option value=\\"automation_multiple_leave_type_id__color\\">Color | Leave Type</option><option value=\\"automation_multiple_leave_type_id__payment\\">Payment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__count\\">Count | Leave Type</option><option value=\\"automation_multiple_leave_type_id__period_in\\">Period in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__limit_leave\\">Limit leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__total_days\\">Total days | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset\\">Reset | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_encashable\\">Is encashable | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_based\\">Reset based | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_month\\">Reset month | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_day\\">Reset day | Leave Type</option><option value=\\"automation_multiple_leave_type_id__reset_weekend\\">Reset weekend | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_type\\">Carryforward type | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_max\\">Carryforward max | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_in\\">Carryforward expire in | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_period\\">Carryforward expire period | Leave Type</option><option value=\\"automation_multiple_leave_type_id__carryforward_expire_date\\">Carryforward expire date | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_approval\\">Require approval | Leave Type</option><option value=\\"automation_multiple_leave_type_id__require_attachment\\">Require attachment | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_company_leave\\">Exclude company leave | Leave Type</option><option value=\\"automation_multiple_leave_type_id__exclude_holiday\\">Exclude holiday | Leave Type</option><option value=\\"automation_multiple_leave_type_id__is_compensatory_leave\\">Is compensatory leave | Leave Type</option><option value=\\"automation_multiple_start_date\\">Start Date</option><option value=\\"automation_multiple_start_date_breakdown\\">Start Date Breakdown</option><option value=\\"automation_multiple_end_date\\">End Date</option><option value=\\"automation_multiple_end_date_breakdown\\">End Date Breakdown</option><option value=\\"automation_multiple_requested_days\\">Requested Days</option><option value=\\"automation_multiple_leave_clashes_count\\">Leave Clashes Count</option><option value=\\"automation_multiple_description\\">Description</option><option value=\\"automation_multiple_attachment\\">Attachment</option><option value=\\"automation_multiple_status\\">Status</option><option value=\\"automation_multiple_requested_date\\">Created Date</option><option value=\\"automation_multiple_approved_available_days\\">Approved available days</option><option value=\\"automation_multiple_approved_carryforward_days\\">Approved carryforward days</option><option value=\\"automation_multiple_reject_reason\\">Reject Reason</option><option value=\\"automation_multiple_created_by\\">Created By</option><option value=\\"automation_multiple_created_by__badge_id\\">Badge id | Created By</option><option value=\\"automation_multiple_created_by__employee_user_id\\">User | Created By</option><option value=\\"automation_multiple_created_by__employee_first_name\\">First name | Created By</option><option value=\\"automation_multiple_created_by__employee_last_name\\">Last name | Created By</option><option value=\\"automation_multiple_created_by__employee_profile\\">Employee profile | Created By</option><option value=\\"automation_multiple_created_by__email\\">Email | Created By</option><option value=\\"automation_multiple_created_by__phone\\">Phone | Created By</option><option value=\\"automation_multiple_created_by__address\\">Address | Created By</option><option value=\\"automation_multiple_created_by__country\\">Country | Created By</option><option value=\\"automation_multiple_created_by__state\\">State | Created By</option><option value=\\"automation_multiple_created_by__city\\">City | Created By</option><option value=\\"automation_multiple_created_by__zip\\">Zip | Created By</option><option value=\\"automation_multiple_created_by__dob\\">Dob | Created By</option><option value=\\"automation_multiple_created_by__gender\\">Gender | Created By</option><option value=\\"automation_multiple_created_by__qualification\\">Qualification | Created By</option><option value=\\"automation_multiple_created_by__experience\\">Experience | Created By</option><option value=\\"automation_multiple_created_by__marital_status\\">Marital status | Created By</option><option value=\\"automation_multiple_created_by__children\\">Children | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact\\">Emergency contact | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_name\\">Emergency contact name | Created By</option><option value=\\"automation_multiple_created_by__emergency_contact_relation\\">Emergency contact relation | Created By</option><option value=\\"automation_multiple_created_by__is_active\\">Is active | Created By</option><option value=\\"automation_multiple_created_by__additional_info\\">Additional info | Created By</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"7270\\" style=\\"width: 126.225px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-95-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-95-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Leave Type\\">Leave Type</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td>\\r\\n <select name=\\"condition\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"7159\\">\\r\\n <option value=\\"==\\" data-select2-id=\\"7161\\">==</option>\\r\\n <option value=\\"!=\\">!=</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"7272\\" style=\\"width: 59.7125px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-condition-zx-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-condition-zx-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"==\\">==</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td class=\\"condition-value-th\\" data-select2-id=\\"5846\\"><select name=\\"automation_multiple_condition\\" required=\\"\\" tabindex=\\"-1\\" class=\\"select2-hidden-accessible\\" aria-hidden=\\"true\\" data-select2-id=\\"7162\\"><option value=\\"5\\">Intern Casual Leave</option><option value=\\"4\\" selected=\\"selected\\" data-select2-id=\\"7164\\">Casual Leave</option><option value=\\"3\\">Compensatory Leave Type</option></select><span class=\\"select2 select2-container select2-container--default\\" dir=\\"ltr\\" data-select2-id=\\"7275\\" style=\\"width: 176.8px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-automation_multiple_condition-ks-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-automation_multiple_condition-ks-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Casual Leave\\">Casual Leave</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span></td>\\r\\n <td data-select2-id=\\"3071\\">\\r\\n <select name=\\"logic\\" onchange=\\"addSelectedAttr(event)\\" class=\\"w-100 select2-hidden-accessible\\" tabindex=\\"-1\\" aria-hidden=\\"true\\" data-select2-id=\\"7166\\">\\r\\n <option value=\\"and\\" data-select2-id=\\"7168\\">And</option>\\r\\n <option value=\\"or\\" data-select2-id=\\"8313\\" selected=\\"selected\\">Or</option>\\r\\n </select><span class=\\"select2 select2-container select2-container--default select2-container--below\\" dir=\\"ltr\\" data-select2-id=\\"7277\\" style=\\"width: 39.525px;\\"><span class=\\"selection\\"><span class=\\"select2-selection select2-selection--single\\" role=\\"combobox\\" aria-haspopup=\\"true\\" aria-expanded=\\"false\\" tabindex=\\"-1\\" aria-disabled=\\"false\\" aria-labelledby=\\"select2-logic-hf-container\\"><span class=\\"select2-selection__rendered\\" id=\\"select2-logic-hf-container\\" role=\\"textbox\\" aria-readonly=\\"true\\" title=\\"Or\\">Or</span><span class=\\"select2-selection__arrow\\" role=\\"presentation\\"><b role=\\"presentation\\"></b></span></span></span><span class=\\"dropdown-wrapper\\" aria-hidden=\\"true\\"></span></span>\\r\\n </td>\\r\\n <td>\\r\\n <div class=\\"oh-btn-group\\">\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n var clonedElement = $(this).closest('tr').clone();\\r\\n totalRows ='C' +( $(this).closest('table').find('.dynamic-condition-row').length + 1);\\r\\n clonedElement.find('.sn').html(totalRows)\\r\\n clonedElement.find('select').parent().find('span').remove()\\r\\n clonedElement.find('select').attr('class','w-100')\\r\\n\\r\\n $(this).closest('tr').parent().append(clonedElement)\\r\\n $('#multipleConditionTable').find('select').select2()\\r\\n \\">\\r\\n <ion-icon name=\\"copy-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"copy outline\\"></ion-icon>\\r\\n </button>\\r\\n <button class=\\"oh-btn oh-btn oh-btn--light p-2 w-50\\" onclick=\\"\\r\\n event.preventDefault();\\r\\n $(this).closest('tr').remove();\\r\\n \\">\\r\\n <ion-icon name=\\"trash-outline\\" role=\\"img\\" class=\\"md hydrated\\" aria-label=\\"trash outline\\"></ion-icon>\\r\\n </button>\\r\\n </div>\\r\\n </td>\\r\\n </tr>\\r\\n \\r\\n \\r\\n \\r\\n <tr class=\\"dynamic-condition-row\\" data-select2-id=\\"3072\\">\\r\\n <td class=\\"sn\\">C2</td>\\r\\n <td id=\\"conditionalField\\" data-select2-id=\\"conditionalField\\"><select class=\\"w-100 select2-hidden-accessible\\" onchange=\\"updateValue($(this));addSelectedAttr(event)\\" data-response=\\"[{"name":"automation_multiple_is_active","type":"CheckboxInput","label":"Is Active","required":false},{"name":"automation_multiple_employee_id","type":"Select","label":"Employee","required":true,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_employee_id__badge_id","type":"TextInput","label":"Badge id | Employee","required":false},{"name":"automation_multiple_employee_id__employee_user_id","type":"Select","label":"User | Employee","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{"value":508,"label":"neha.pandita@growthnatives.com"},{"value":509,"label":"harsh.gautam@growthnatives.co"},{"value":510,"label":"rinku.sharma@growthnatives.com"},{"value":511,"label":"taran@growthnatives.com"},{"value":512,"label":"mridul.kumar@growthnatives.com"},{"value":515,"label":"eshu.arora@growthnatives.com"},{"value":513,"label":"lokesh.Gahnolia@growthnatives.co"},{"value":516,"label":"chirag.takkar@growthnatives.com"},{"value":517,"label":"shipra.goyal@growthnatives.com"},{"value":518,"label":"sourabh.dhadwal@growthnatives.co"},{"value":519,"label":"nitin.rana@growthnatives.com"},{"value":520,"label":"shivam.setia@growthnatives.co"},{"value":521,"label":"ritik.badola@growthnatives.co"},{"value":523,"label":"yashika.gupta@growthnatives.com"},{"value":524,"label":"nitish.prabhakar@growthnatives.com"},{"value":526,"label":"rahul.sindwani@growthnatives.com"},{"value":528,"label":"harshika.sachdeva@growthnatives.com"},{"value":529,"label":"dharna.sharma@growthnatives.com"},{"value":514,"label":"bhavika.verma@growthnatives.com"},{"value":522,"label":"kartik.sharma@growthnatives.co"},{"value":525,"label":"ikbal.singh@growthnatives.com"},{"value":527,"label":"chirag.sharma@growthnatives.co"},{"value":530,"label":"bhavna.joshi@growthnatives.com"},{"value":531,"label":"vardan.singh@growthnatives.co"},{"value":532,"label":"kj@growthnatives.com"},{"value":533,"label":"chhavinav.sehgal@growthnatives.com"},{"value":536,"label":"vishal.mehta@growthnatives.com"},{"value":535,"label":"sahil.koundal@growthnatives.co"},{"value":534,"label":"rishav.rajan@growthnatives.co"}]},{"name":"automation_multiple_employee_id__employee_first_name","type":"TextInput","label":"First name | Employee","required":true},{"name":"automation_multiple_employee_id__employee_last_name","type":"TextInput","label":"Last name | Employee","required":false},{"name":"automation_multiple_employee_id__employee_profile","type":"ClearableFileInput","label":"Employee profile | Employee","required":false},{"name":"automation_multiple_employee_id__email","type":"EmailInput","label":"Email | Employee","required":true},{"name":"automation_multiple_employee_id__phone","type":"TextInput","label":"Phone | Employee","required":true},{"name":"automation_multiple_employee_id__address","type":"Textarea","label":"Address | Employee","required":false},{"name":"automation_multiple_employee_id__country","type":"TextInput","label":"Country | Employee","required":false},{"name":"automation_multiple_employee_id__state","type":"TextInput","label":"State | Employee","required":false},{"name":"automation_multiple_employee_id__city","type":"TextInput","label":"City | Employee","required":false},{"name":"automation_multiple_employee_id__zip","type":"TextInput","label":"Zip | Employee","required":false},{"name":"automation_multiple_employee_id__dob","type":"DateInput","label":"Dob | Employee","required":false},{"name":"automation_multiple_employee_id__gender","type":"Select","label":"Gender | Employee","required":true,"options":[{"value":"male","label":"Male"},{"value":"female","label":"Female"},{"value":"other","label":"Other"}]},{"name":"automation_multiple_employee_id__qualification","type":"TextInput","label":"Qualification | Employee","required":false},{"name":"automation_multiple_employee_id__experience","type":"NumberInput","label":"Experience | Employee","required":false},{"name":"automation_multiple_employee_id__marital_status","type":"Select","label":"Marital status | Employee","required":false,"options":[{"value":"","label":"---------"},{"value":"single","label":"Single"},{"value":"married","label":"Married"},{"value":"divorced","label":"Divorced"}]},{"name":"automation_multiple_employee_id__children","type":"NumberInput","label":"Children | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact","type":"TextInput","label":"Emergency contact | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_name","type":"TextInput","label":"Emergency contact name | Employee","required":false},{"name":"automation_multiple_employee_id__emergency_contact_relation","type":"TextInput","label":"Emergency contact relation | Employee","required":false},{"name":"automation_multiple_employee_id__is_active","type":"CheckboxInput","label":"Is active | Employee","required":false},{"name":"automation_multiple_employee_id__additional_info","type":"Textarea","label":"Additional info | Employee","required":false},{"name":"automation_multiple_leave_type_id","type":"Select","label":"Leave Type","required":true,"options":[{"value":"","label":"---------"},{"value":"5","label":"Intern Casual Leave"},{"value":"4","label":"Casual Leave"},{"value":"3","label":"Compensatory Leave Type"}],"related_fields":[]},{"name":"automation_multiple_leave_type_id__is_active","type":"CheckboxInput","label":"Is active | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__icon","type":"ClearableFileInput","label":"Icon | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__name","type":"TextInput","label":"Name | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__color","type":"TextInput","label":"Color | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__payment","type":"Select","label":"Payment | Leave Type","required":true,"options":[{"value":"paid","label":"Paid"},{"value":"unpaid","label":"Unpaid"}]},{"name":"automation_multiple_leave_type_id__count","type":"NumberInput","label":"Count | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__period_in","type":"Select","label":"Period in | Leave Type","required":true,"options":[{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__limit_leave","type":"CheckboxInput","label":"Limit leave | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__total_days","type":"NumberInput","label":"Total days | Leave Type","required":true},{"name":"automation_multiple_leave_type_id__reset","type":"CheckboxInput","label":"Reset | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__is_encashable","type":"CheckboxInput","label":"Is encashable | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__reset_based","type":"Select","label":"Reset based | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yearly","label":"Yearly"},{"value":"monthly","label":"Monthly"},{"value":"weekly","label":"Weekly"}]},{"name":"automation_multiple_leave_type_id__reset_month","type":"Select","label":"Reset month | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"1","label":"Jan"},{"value":"2","label":"Feb"},{"value":"3","label":"Mar"},{"value":"4","label":"Apr"},{"value":"5","label":"May"},{"value":"6","label":"Jun"},{"value":"7","label":"Jul"},{"value":"8","label":"Aug"},{"value":"9","label":"Sep"},{"value":"10","label":"Oct"},{"value":"11","label":"Nov"},{"value":"12","label":"Dec"}]},{"name":"automation_multiple_leave_type_id__reset_day","type":"Select","label":"Reset day | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"last day","label":"Last Day"},{"value":"1","label":"1st"},{"value":"2","label":"2nd"},{"value":"3","label":"3rd"},{"value":"4","label":"4th"},{"value":"5","label":"5th"},{"value":"6","label":"6th"},{"value":"7","label":"7th"},{"value":"8","label":"8th"},{"value":"9","label":"9th"},{"value":"10","label":"10th"},{"value":"11","label":"11th"},{"value":"12","label":"12th"},{"value":"13","label":"13th"},{"value":"14","label":"14th"},{"value":"15","label":"15th"},{"value":"16","label":"16th"},{"value":"17","label":"17th"},{"value":"18","label":"18th"},{"value":"19","label":"19th"},{"value":"20","label":"20th"},{"value":"21","label":"21th"},{"value":"22","label":"22th"},{"value":"23","label":"23th"},{"value":"24","label":"24th"},{"value":"25","label":"25th"},{"value":"26","label":"26th"},{"value":"27","label":"27th"},{"value":"28","label":"28th"},{"value":"29","label":"29th"},{"value":"30","label":"30th"},{"value":"31","label":"31th"}]},{"name":"automation_multiple_leave_type_id__reset_weekend","type":"Select","label":"Reset weekend | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"0","label":"Monday"},{"value":"1","label":"Tuesday"},{"value":"2","label":"Wednesday"},{"value":"3","label":"Thursday"},{"value":"4","label":"Friday"},{"value":"5","label":"Saturday"},{"value":"6","label":"Sunday"}]},{"name":"automation_multiple_leave_type_id__carryforward_type","type":"Select","label":"Carryforward type | Leave Type","required":true,"options":[{"value":"no carryforward","label":"No Carry Forward"},{"value":"carryforward","label":"Carry Forward"},{"value":"carryforward expire","label":"Carry Forward with Expire"}]},{"name":"automation_multiple_leave_type_id__carryforward_max","type":"NumberInput","label":"Carryforward max | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_in","type":"NumberInput","label":"Carryforward expire in | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__carryforward_expire_period","type":"Select","label":"Carryforward expire period | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"day","label":"Day"},{"value":"month","label":"Month"},{"value":"year","label":"Year"}]},{"name":"automation_multiple_leave_type_id__carryforward_expire_date","type":"DateInput","label":"Carryforward expire date | Leave Type","required":false},{"name":"automation_multiple_leave_type_id__require_approval","type":"Select","label":"Require approval | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__require_attachment","type":"Select","label":"Require attachment | Leave Type","required":false,"options":[{"value":"","label":"---------"},{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_company_leave","type":"Select","label":"Exclude company leave | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__exclude_holiday","type":"Select","label":"Exclude holiday | Leave Type","required":true,"options":[{"value":"yes","label":"Yes"},{"value":"no","label":"No"}]},{"name":"automation_multiple_leave_type_id__is_compensatory_leave","type":"CheckboxInput","label":"Is compensatory leave | Leave Type","required":false},{"name":"automation_multiple_start_date","type":"DateInput","label":"Start Date","required":true},{"name":"automation_multiple_start_date_breakdown","type":"Select","label":"Start Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_end_date","type":"DateInput","label":"End Date","required":false},{"name":"automation_multiple_end_date_breakdown","type":"Select","label":"End Date Breakdown","required":true,"options":[{"value":"full_day","label":"Full Day"},{"value":"first_half","label":"First Half"},{"value":"second_half","label":"Second Half"}]},{"name":"automation_multiple_requested_days","type":"NumberInput","label":"Requested Days","required":false},{"name":"automation_multiple_leave_clashes_count","type":"NumberInput","label":"Leave Clashes Count","required":true},{"name":"automation_multiple_description","type":"Textarea","label":"Description","required":true,"max_length":255},{"name":"automation_multiple_attachment","type":"ClearableFileInput","label":"Attachment","required":false},{"name":"automation_multiple_status","type":"Select","label":"Status","required":true,"options":[{"value":"requested","label":"Requested"},{"value":"approved","label":"Approved"},{"value":"cancelled","label":"Cancelled"},{"value":"rejected","label":"Rejected"}]},{"name":"automation_multiple_requested_date","type":"DateInput","label":"Created Date","required":true},{"name":"automation_multiple_approved_available_days","type":"NumberInput","label":"Approved available days","required":true},{"name":"automation_multiple_approved_carryforward_days","type":"NumberInput","label":"Approved carryforward days","required":true},{"name":"automation_multiple_reject_reason","type":"Textarea","label":"Reject Reason","required":false,"max_length":255},{"name":"automation_multiple_created_by","type":"Select","label":"Created By","required":false,"options":[{"value":"","label":"---------"},{"value":"225","label":"Aarohi Tiwari (GN0157)"},{"value":"58","label":"Aashish Nagar (GN0329)"},{"value":"222","label":"Aastha Mittal (GN0345)"},{"value":"150","label":"Abeer Aulakh (GN0364)"},{"value":"61","label":"Abhi Panwar (GN0533)"},{"value":"161","label":"Abhijeet (GN0500)"},{"value":"208","label":"Abhinav Dass (GN0579)"},{"value":"102","label":"Abhisek (GN0598)"},{"value":"43","label":"Abhishek Panchal (GN0017)"},{"value":"78","label":"Abhishek Pathania (GN0185)"},{"value":"170","label":"Abhishek (GN0574)"},{"value":"94","label":"Aditi Chauhan (GN0431)"},{"value":"74","label":"Aditi Sharma (MA TEAM) (GN0308)"},{"value":"36","label":"Admin GN "},{"value":"219","label":"Ajay Sharma (GN0445)"},{"value":"70","label":"Ajit Singh (GN0344)"},{"value":"243","label":"Akanksha Dass (GN0421)"},{"value":"220","label":"Akanksha Thakur (GN0436)"},{"value":"50","label":"Akansha Negi (GN0553)"},{"value":"51","label":"Akash Pathania (GN0546)"},{"value":"154","label":"Akhil Yadav (GN0106)"},{"value":"256","label":"Akshay Kurhade (GN0180)"},{"value":"244","label":"Akshay Singh (GN0278)"},{"value":"160","label":"Akshit Issar (GN0592)"},{"value":"197","label":"Akshita Khanna (GN0503)"},{"value":"37","label":"Alisha Kapoor (GN0601)"},{"value":"175","label":"Aman Gota (GN0481)"},{"value":"105","label":"Aman Thakur (GN0530)"},{"value":"254","label":"Amman Masood (GN0524)"},{"value":"216","label":"Anant Chaudhary (GN0561)"},{"value":"85","label":"Ananta (GN0534)"},{"value":"107","label":"Angshu Das (GN0498)"},{"value":"234","label":"Anjali Gupta (GN0312)"},{"value":"247","label":"Anjali Rajput (GN0580)"},{"value":"163","label":"Anju Yadav (GN0512)"},{"value":"221","label":"Ankit Chauhan (GN0413)"},{"value":"258","label":"Ankit Kumar (GN0584)"},{"value":"40","label":"Ankit Vashishth (GN0204)"},{"value":"95","label":"Ankita Rana (GN0408)"},{"value":"207","label":"Anmol Sharma (GN0586)"},{"value":"106","label":"Anshu Kumari Gupta (GN0531)"},{"value":"224","label":"Anupriya Goyal (GN0239)"},{"value":"233","label":"Anuradha Mishra (GN0313)"},{"value":"268","label":"Arjun Thakur (GN0551)"},{"value":"196","label":"Arpit Goyal (GN0197)"},{"value":"151","label":"Arpit Srivastava (GN0277)"},{"value":"117","label":"Arpit (GN0338)"},{"value":"209","label":"Arshdeep Singh Multani (GN0501)"},{"value":"130","label":"Arshpreet Kaur (GN0583)"},{"value":"212","label":"Ashish Chauhan (GN0048)"},{"value":"67","label":"Ashish Malhoch (GN0383)"},{"value":"48","label":"Ashish Pathania (GN0402)"},{"value":"62","label":"Ashul Kumar (GN0523)"},{"value":"252","label":"Aviral Srivastav (GN0559)"},{"value":"214","label":"Baljinder Singh (GN0186)"},{"value":"124","label":"Balpreet Singh (GN0055)"},{"value":"91","label":"Barirah Roshin (GN0475)"},{"value":"128","label":"Bhag Singh (GN0334)"},{"value":"276","label":"Bhavika (GN0279)"},{"value":"292","label":"Bhavna Joshi (GN0082)"},{"value":"239","label":"Bhavya Soni (GN0447)"},{"value":"191","label":"Brijesh Kumar (GN0572)"},{"value":"97","label":"Chandan Deep (GN0525)"},{"value":"68","label":"Chandan Kumar (GN0381)"},{"value":"181","label":"Chandan Madaan (GN0176)"},{"value":"295","label":"Chhavinav (GN0039)"},{"value":"289","label":"Chirag Sharma (GN0502)"},{"value":"278","label":"Chirag Takkar (GN0144)"},{"value":"168","label":"Daksh Jethi (GN0537)"},{"value":"42","label":"Deepak Garg (GN0028)"},{"value":"65","label":"Deepak Gaud (GN0417)"},{"value":"260","label":"Deepanshi Arora (GN0542)"},{"value":"202","label":"Deepinder Singh (GN0604)"},{"value":"172","label":"Devesh Ojha (GN0566)"},{"value":"265","label":"Devesh Saxena (GN0259)"},{"value":"291","label":"Dharna Sharma (GN0099)"},{"value":"99","label":"Dhruv Jindal (GN0603)"},{"value":"250","label":"Diksha Gathania (GN0468)"},{"value":"136","label":"Diksha Sharma (GN0472)"},{"value":"179","label":"Dilbag Singh (GN0194)"},{"value":"204","label":"Dilraj Singh (GN0589)"},{"value":"116","label":"Durgesh Kumar (GN0350)"},{"value":"206","label":"Ekamonkar Singh (GN0587)"},{"value":"139","label":"Era Bhawra (GN0444)"},{"value":"277","label":"Eshu Arora (GN0147)"},{"value":"144","label":"Gagandeep Singh( design team) (GN0322)"},{"value":"159","label":"Gaurav Rajput (GN0001)"},{"value":"217","label":"Gaurav Saini (GN0556)"},{"value":"153","label":"Geeta Patial (GN0121)"},{"value":"162","label":"Geetanjali (GN0400)"},{"value":"165","label":"Gulshan Kumar (GN0084)"},{"value":"261","label":"Guntas Dhillon (GN0519)"},{"value":"218","label":"Gurdev Singh (GN0493)"},{"value":"115","label":"Gurkirat Singh (GN0440)"},{"value":"125","label":"Gurpreet Singh (GN0543)"},{"value":"129","label":"Gurpreet Singh Saroye (GN0599)"},{"value":"137","label":"Gurvinder Singh (GN0454)"},{"value":"81","label":"Harpuneet Singh (GN0150)"},{"value":"271","label":"Harsh Gautam (GN0484)"},{"value":"88","label":"Harsh Vardhan Pathak (GN0565)"},{"value":"174","label":"Harsh (GN0486)"},{"value":"232","label":"Harshika Chadha (GN0324)"},{"value":"290","label":"Harshika (GN0149)"},{"value":"183","label":"Harshita Joshi (GN0174)"},{"value":"53","label":"Hitakshi (GN0521)"},{"value":"231","label":"Hitika Saini (GN0398)"},{"value":"287","label":"Ikbal Singh (GN0011)"},{"value":"131","label":"Inayat Kaur (GN0578)"},{"value":"93","label":"Irfan Ahmad (GN0435)"},{"value":"143","label":"Ishan Shaurya (GN0358)"},{"value":"185","label":"Ishika Kashyap (GN0505)"},{"value":"195","label":"Ishika (GN0242)"},{"value":"39","label":"Ishtpreet Kaur (GN0209)"},{"value":"145","label":"Jagrit Sharma (GN0306)"},{"value":"109","label":"Janak Magotra (GN0492)"},{"value":"122","label":"Jashan Deep Sukhija (GN0066)"},{"value":"259","label":"Jashanpreet Singh Gill (GN0585)"},{"value":"83","label":"Jaskaran Singh (GN0063)"},{"value":"192","label":"Kamal Sharma (SFDC) (GN0526)"},{"value":"294","label":"Kamaljit Singh (GN0318)"},{"value":"210","label":"Karamjeet Singh Chauhan (GN0487)"},{"value":"82","label":"Karan Kaushal (GN0136)"},{"value":"284","label":"Kartik Sharma (GN0499)"},{"value":"127","label":"Kartik Singh Thakur (GN0496)"},{"value":"266","label":"Kartikey Khosla (GN0248)"},{"value":"112","label":"Kashish (GN0462)"},{"value":"198","label":"Kaushik Dhiman (GN0495)"},{"value":"103","label":"Keshav Sharma (GN0577)"},{"value":"141","label":"Kirandeep Singh (GN0416)"},{"value":"177","label":"Kirpal Singh (GN0225)"},{"value":"98","label":"Komal (GN0414)"},{"value":"114","label":"Kritika (GN0455)"},{"value":"263","label":"Lakshay (GN0453)"},{"value":"64","label":"Lavish Rana (GN0437)"},{"value":"90","label":"Leepakshi Saini (GN0511)"},{"value":"275","label":"Lokesh (GN0548)"},{"value":"190","label":"Mahesh Dattatraya Nirmal (GN0573)"},{"value":"257","label":"Mahika Aggarwal (GN0596)"},{"value":"120","label":"Malvika Chauhan (GN0203)"},{"value":"200","label":"Manica Kwatra (GN0337)"},{"value":"63","label":"Manoj Pandey (GN0471)"},{"value":"121","label":"Manpreet Kaur (GN0115)"},{"value":"60","label":"Manu Jamwal (GN0238)"},{"value":"75","label":"Mayank Sharma (GN0288)"},{"value":"213","label":"Mehak Hasija (GN0033)"},{"value":"249","label":"Mehakpreet Kaur (GN0538)"},{"value":"194","label":"Mohd Sufiyan (GN0311)"},{"value":"54","label":"Mohit Arora (GN0518)"},{"value":"223","label":"Mohit Dharwal (GN0243)"},{"value":"240","label":"Mohit Kumar (GN0027)"},{"value":"274","label":"Mridul Kumar (GN0591)"},{"value":"45","label":"Musawwir Ahamad Fani (GN0388)"},{"value":"66","label":"Muskaan (GN0390)"},{"value":"167","label":"Nakul Sharma (GN0552)"},{"value":"89","label":"Naman Katariya (GN0563)"},{"value":"135","label":"Nandini Sharma (GN0478)"},{"value":"270","label":"Neha Pandita (GN0593)"},{"value":"215","label":"Nikhil Singh (GN0320)"},{"value":"133","label":"Nikita Uppal (GN0564)"},{"value":"126","label":"Nishant Singh (GN0540)"},{"value":"281","label":"Nitin Rana (GN0233)"},{"value":"269","label":"Nitin Sharma (sale) (GN0216)"},{"value":"242","label":"Nitish Gupta (GN0428)"},{"value":"286","label":"Nitish Prabhakar (GN0131)"},{"value":"80","label":"Paras Sharma (GN0178)"},{"value":"123","label":"Parmveer Singh (GN0065)"},{"value":"238","label":"Pawan Joshi (GN0343)"},{"value":"229","label":"Piyush Ajay Bageshwar (GN0449)"},{"value":"132","label":"Praneet Kaur Dhillon (GN0567)"},{"value":"71","label":"Prashant Thakur (GN0339)"},{"value":"87","label":"Prateek Khatri (GN0571)"},{"value":"46","label":"Prem Sagar (GN0257)"},{"value":"180","label":"Prerna kaushal (GN0177)"},{"value":"72","label":"Prince Kumar Sharma (GN0332)"},{"value":"86","label":"Priya Dashore (GN0581)"},{"value":"69","label":"Purushotham Narayan (GN0380)"},{"value":"169","label":"Pushpa (GN0461)"},{"value":"52","label":"Rahul Kumar (GN0532)"},{"value":"148","label":"Rahul Sachdeva (GN0491)"},{"value":"44","label":"Rahul Sharma (GN0019)"},{"value":"176","label":"Rahul Sharma (SFDC) (GN0255)"},{"value":"288","label":"Rahul Sindwani (GN0208)"},{"value":"241","label":"Rahul Verma (GN0429)"},{"value":"227","label":"Rajnish Ranjan (GN0535)"},{"value":"134","label":"Rama Sharma (GN0528)"},{"value":"199","label":"Ramandeep Singh Bagga (GN0309)"},{"value":"171","label":"Ravideep Singh (GN0570)"},{"value":"77","label":"Ravina Garg (GN0228)"},{"value":"255","label":"Richa Bhardwaj (GN0482)"},{"value":"251","label":"Rimpy Sindhu (GN0450)"},{"value":"272","label":"Rinku Sharma (GN0240)"},{"value":"226","label":"Rishab Sharma (GN0430)"},{"value":"296","label":"Rishav Ranjan (GN0594)"},{"value":"283","label":"Ritik Badola (GN0411)"},{"value":"262","label":"Riya Sharma (GN0582)"},{"value":"186","label":"Rohan (GN0504)"},{"value":"96","label":"Rommel Datta (GN0396)"},{"value":"211","label":"Ruby Sindwani (GN0213)"},{"value":"155","label":"Rukman Singh (GN0062)"},{"value":"56","label":"Sachin Kumar (GN0412)"},{"value":"92","label":"Sachin Manocha (GN0474)"},{"value":"253","label":"Sachin (GN0527)"},{"value":"297","label":"Sahil Koundal (GN0576)"},{"value":"49","label":"Sahil Minhas (GN0557)"},{"value":"101","label":"Saksham Bhatia (GN0600)"},{"value":"158","label":"Sakshi Arora (GN0043)"},{"value":"246","label":"Saloni Apoorva (GN0184)"},{"value":"149","label":"Sameer Pawar (GN0427)"},{"value":"110","label":"Santosh Mandal (GN0490)"},{"value":"113","label":"Sanya Midha (GN0456)"},{"value":"147","label":"Satwinder Singh (GN0076)"},{"value":"38","label":"Saurabh Goyal (GN0515)"},{"value":"55","label":"Saurabh Sharma (MA) (GN0442)"},{"value":"142","label":"Sayam Sehgal (GN0360)"},{"value":"184","label":"Sehajpreet Singh (GN0142)"},{"value":"47","label":"Shagun Sharma (GN0130)"},{"value":"237","label":"Shahzad Musawwir Farid (GN0016)"},{"value":"157","label":"Shailendra Pratap (GN0038)"},{"value":"189","label":"Shaini Agnihotri (GN0595)"},{"value":"164","label":"Shakshi (GN0403)"},{"value":"41","label":"Shalini Chauhan (GN0059)"},{"value":"264","label":"Shami Kumar (GN0289)"},{"value":"76","label":"Sharmistha Dey (GN0271)"},{"value":"279","label":"Shipra Goyal (GN0135)"},{"value":"140","label":"Shiromani Bhatti (GN0418)"},{"value":"228","label":"Shivam Joshi (GN0466)"},{"value":"230","label":"Shivam Kathpal (GN0438)"},{"value":"73","label":"Shivam Kumar Pandey (GN0330)"},{"value":"282","label":"Shivam Setia (GN0465)"},{"value":"146","label":"Shivesh Sharma (GN0132)"},{"value":"203","label":"Shreya Narula (GN0590)"},{"value":"79","label":"Shubham Chaudhary (GN0181)"},{"value":"59","label":"Simran (GN0326)"},{"value":"193","label":"Simranjit Kaur (GN0506)"},{"value":"248","label":"Sneha Kumari (GN0549)"},{"value":"84","label":"Sneha (GN0522)"},{"value":"187","label":"Sonu Yadav (GN0494)"},{"value":"280","label":"Sourabh Dhadwal (GN0460)"},{"value":"119","label":"Sourabh (GN0221)"},{"value":"108","label":"Sourin Manna (GN0497)"},{"value":"236","label":"Sukhpreet Kaur (GN0047)"},{"value":"156","label":"Sumeet Rana (GN0054)"},{"value":"182","label":"Sumit Kumar Bhatt (GN0175)"},{"value":"188","label":"Suraj Singh Rawat (GN0179)"},{"value":"245","label":"Surya Gehlot (GN0382)"},{"value":"273","label":"Taran Bir Singh Nandha (GN0002)"},{"value":"138","label":"Tarun Kumar (GN0446)"},{"value":"267","label":"Tejinder Singh (GN0148)"},{"value":"166","label":"Tripatraj (GN0597)"},{"value":"152","label":"Tushar Misri (GN0171)"},{"value":"235","label":"Vaibhav Kumar (GN0307)"},{"value":"178","label":"Vardaan Pandit (GN0195)"},{"value":"293","label":"Vardan Singh (GN0386)"},{"value":"205","label":"Varun Kumar Kashyap (GN0588)"},{"value":"57","label":"Vashu Choudhary (GN0404)"},{"value":"173","label":"Vedaant Sooden (GN0507)"},{"value":"201","label":"Vikrant Baranwal (GN0545)"},{"value":"104","label":"Vipin Kumar (GN0555)"},{"value":"118","label":"Vishal Chauhan (GN0280)"},{"value":"298","label":"Vishal Mehta (GN0097)"},{"value":"285","label":"Yashika Gupta (GN0152)"},{"value":"111","label":"Yogesh Sharma (GN0485)"},{"value":"100","label":"Yuvraj Walia (GN0602)"}],"related_fields":[]},{"name":"automation_multiple_created_by__badge_id","type":"TextInput","label":"Badge id | Created By","required":false},{"name":"automation_multiple_created_by__employee_user_id","type":"Select","label":"User | Created By","required":false,"options":[{"value":274,"label":"Horilla Bot"},{"value":276,"label":"saurabh.goyal@growthnatives.com"},{"value":275,"label":"alisha.kapoor@growthnatives.com"},{"value":277,"label":"ishtpreet@growthnatives.com"},{"value":278,"label":"ankit.vas@growthnatives.com"},{"value":279,"label":"shalini.chauhan@growthnatives.com"},{"value":280,"label":"deepak.garg@growthnatives.com"},{"value":281,"label":"abhishek.panchal@growthnatives.com"},{"value":282,"label":"rahul@growthnatives.com"},{"value":283,"label":"amit.sangwan@growthnatives.com"},{"value":284,"label":"prem.sagar@growthnatives.com"},{"value":285,"label":"shagun.sharma@growthnatives.com"},{"value":286,"label":"ashish.pathania@growthnatives.com"},{"value":288,"label":"akansha.negi@growthnatives.com"},{"value":290,"label":"rahul.kumar@growthnatives.co"},{"value":291,"label":"hitakshi@growthnatives.co"},{"value":293,"label":"saurabh.sharma@growthnatives.co"},{"value":294,"label":"sachin.kumar@growthnatives.com"},{"value":296,"label":"ashish.nagar@growthnatives.co"},{"value":298,"label":"manu.jamwal@growthnatives.com"},{"value":299,"label":"abhi.panwar@growthnatives.co"},{"value":301,"label":"manoj.pandey@growthnatives.co"},{"value":303,"label":"deepak@gmail.com"},{"value":304,"label":"muskaan@growthnatives.com"},{"value":306,"label":"chandan.kumar@growthnatives.co"},{"value":308,"label":"ajit.singh@growthnatives.com"},{"value":309,"label":"prashant.thakur@growthnatives.com"},{"value":311,"label":"shivam.kumarpandey@growthnatives.co"},{"value":312,"label":"aditi.vashisth@growthnatives.com"},{"value":314,"label":"sharmistha.dey@growthnatives.com"},{"value":315,"label":"ravina.garg@growthnatives.com"},{"value":317,"label":"shubham.chaudhary@growthnatives.com"},{"value":319,"label":"harpuneet.singh@growthnatives.com"},{"value":320,"label":"karan.kaushal@growthnatives.com"},{"value":322,"label":"sneha@growthnatives.co"},{"value":323,"label":"ananta@growthnatives.co"},{"value":287,"label":"sahil.minhas@growthnatives.co"},{"value":289,"label":"akash.pathania@growthnatives.co"},{"value":292,"label":"mohit.arora@growthnatives.com"},{"value":295,"label":"vashu.choudhary@growthnatives.co"},{"value":297,"label":"simran.arora@growthnatives.com"},{"value":300,"label":"ashul.kumar@growthnatives.co"},{"value":302,"label":"lavish.rana@growthnatives.co"},{"value":305,"label":"ashish.malhoch@growthnatives.co"},{"value":307,"label":"purushotham.narayan@growthnatives.com"},{"value":310,"label":"prince.sharma@growthnatives.com"},{"value":313,"label":"mayank.sharma@growthnatives.com"},{"value":316,"label":"abhishek.pathania@growthnatives.com"},{"value":318,"label":"paras.sharma@growthnatives.com"},{"value":321,"label":"jaskaran.singh@growthnatives.com"},{"value":325,"label":"prateek.khatri@growthnatives.com"},{"value":327,"label":"naman.katariya@growthnatives.co"},{"value":329,"label":"barirah.roshin@growthnatives.co"},{"value":330,"label":"sachin.manocha@growthnatives.com"},{"value":332,"label":"aditi.chauhan@growthnatives.com"},{"value":333,"label":"ankita.rana@growthnatives.com"},{"value":335,"label":"chandan.deep@growthnatives.co"},{"value":337,"label":"dhruv.jindal@networkon.io"},{"value":338,"label":"yuvraj.walia@growthnatives.co"},{"value":340,"label":"abhisek.dogra@growthnatives.co"},{"value":342,"label":"vipin.kumar@diggrowth.com"},{"value":343,"label":"aman.thakur@growthnatives.com"},{"value":345,"label":"angshu.das@growthnatives.co"},{"value":347,"label":"janak.magotra@diggrowth.com"},{"value":348,"label":"santosh.mandal@networkon.io"},{"value":350,"label":"kashish@growthnatives.co"},{"value":351,"label":"sanya.midha@growthnatives.co"},{"value":353,"label":"gurkirat.singh@networkon.io"},{"value":355,"label":"arpit.babharoia@growthnatives.co"},{"value":357,"label":"sourabh@growthnatives.com"},{"value":358,"label":"malvika.chauhan@diggrowth.com"},{"value":273,"label":"Admin"},{"value":324,"label":"priya.dashore@growthnatives.com"},{"value":326,"label":"harsh.pathak@growthnatives.com"},{"value":328,"label":"leepakshi.saini@growthnatives.co"},{"value":331,"label":"irfan.ahmad@growthnatives.com"},{"value":334,"label":"rommel.datta@growthnatives.co"},{"value":336,"label":"komal@networkon.io"},{"value":339,"label":"saksham.bhatia@growthnatives.co"},{"value":341,"label":"keshav.sharma@growthnatives.co"},{"value":344,"label":"anshu.gupta@growthnatives.co"},{"value":346,"label":"sourin.manna@growthnatives.co"},{"value":349,"label":"yogesh.sharma@growthnatives.co"},{"value":352,"label":"kritika@growthnatives.co"},{"value":354,"label":"durgesh.kumar@growthnatives.co"},{"value":356,"label":"vishal.chauhan@growthnatives.com"},{"value":359,"label":"manpreet.kaur@growthnatives.com"},{"value":360,"label":"jashandeep.sukhija@growthnatives.com"},{"value":361,"label":"parmveer.singh@growthnatives.com"},{"value":362,"label":"balpreet.brar@growthnatives.com"},{"value":363,"label":"gurpreet@growthnatives.co"},{"value":364,"label":"nishant.singh@growthnatives.co"},{"value":365,"label":"kartik.thakur@growthnatives.co"},{"value":366,"label":"bhag.singh@growthnatives.co"},{"value":367,"label":"gurpreet.singh@growthnatives.co"},{"value":368,"label":"arshpreet.kaur@growthnatives.co"},{"value":369,"label":"inayat.kaur@growthnatives.co"},{"value":370,"label":"praneet.dhillon@growthnatives.co"},{"value":371,"label":"nikita.uppal@growthnatives.co"},{"value":372,"label":"rama.sharma@growthnatives.com"},{"value":373,"label":"nandini.sharma@growthnatives.co"},{"value":374,"label":"diksha.sharma@growthnatives.co"},{"value":375,"label":"gurvinder.singh@growthnatives.co"},{"value":376,"label":"tarun.kumar@growthnatives.co"},{"value":378,"label":"shiromani.bhatti@growthnatives.co"},{"value":380,"label":"sayam.sehgal@growthnatives.co"},{"value":381,"label":"ishan.shaurya@growthnatives.co"},{"value":383,"label":"jagritsharma2001@gmail.com"},{"value":384,"label":"shivesh.sharma@growthnatives.com"},{"value":377,"label":"era.bhawra@growthnatives.co"},{"value":379,"label":"kirandeep.singh@growthnatives.co"},{"value":382,"label":"gaganphagwara1999@gmail.com"},{"value":385,"label":"satwinder.singh@growthnatives.com"},{"value":386,"label":"rahul.sachdeva@growthnatives.com"},{"value":387,"label":"sameer.pawar@growthnatives.co"},{"value":388,"label":"abeer.aulakh@growthnatives.com"},{"value":389,"label":"arpit@growthnatives.com"},{"value":390,"label":"tushar@growthnatives.com"},{"value":391,"label":"geeta.patial@growthnatives.com"},{"value":392,"label":"akhil.yadav@growthnatives.com"},{"value":393,"label":"rukman@growthnatives.com"},{"value":394,"label":"sumeet@growthnatives.com"},{"value":395,"label":"shailendra@growthnatives.com"},{"value":396,"label":"sakshi.arora@growthnatives.com"},{"value":397,"label":"gaurav@growthnatives.com"},{"value":398,"label":"akshit.issar@networkon.io"},{"value":399,"label":"abhijeet@networkon.io"},{"value":400,"label":"geetanjali@networkon.io"},{"value":401,"label":"anju.yadav@growthnatives.com"},{"value":402,"label":"shakshi.thakur@growthnatives.com"},{"value":403,"label":"gulshan.kumar@growthnatives.com"},{"value":404,"label":"tripat.raj@growthnatives.co"},{"value":405,"label":"nakul.sharma@growthnatives.co"},{"value":406,"label":"daksh.jethi@growthnatives.co"},{"value":407,"label":"pushpa@growthnatives.co"},{"value":408,"label":"abhishek@growthnatives.com"},{"value":409,"label":"ravideep.singh@growthnatives.co"},{"value":410,"label":"devesh.ojha@growthnatives.co"},{"value":412,"label":"harsh@growthnatives.co"},{"value":413,"label":"aman.gota@growthnatives.co"},{"value":415,"label":"kps@growthnatives.com"},{"value":416,"label":"vardaan.pandit@growthnatives.com"},{"value":418,"label":"prernak@growthnatives.com"},{"value":419,"label":"chandan.madaan@growthnatives.com"},{"value":421,"label":"hershey@growthnatives.com"},{"value":423,"label":"ishika.kashyap@growthnatives.co"},{"value":411,"label":"vedaant.sooden@growthnatives.co"},{"value":414,"label":"rahul.sharma@growthnatives.com"},{"value":417,"label":"dilbag.singh@growthnatives.com"},{"value":420,"label":"sam.bhatt@gowthnatives.com"},{"value":422,"label":"sehajpreet.singh@growthnatives.com"},{"value":424,"label":"rohan@growthnatives.co"},{"value":426,"label":"suraj.rawat@growthnatives.com"},{"value":428,"label":"mahesh.nirmal@growthnatives.com"},{"value":429,"label":"brijesh.kumar@growthnatives.com"},{"value":431,"label":"simranjit.kaur@growthnatives.co"},{"value":432,"label":"mohd.sufiyan@growthnatives.com"},{"value":434,"label":"arpit.goyal@growthnatives.com"},{"value":436,"label":"kaushik.dhiman@growthnatives.com"},{"value":437,"label":"ramandeep.sbagga@growthnatives.com"},{"value":439,"label":"vikrant.baranwal@growthnatives.co"},{"value":440,"label":"deepinder.singh@growthnatives.com"},{"value":442,"label":"dilraj.singh@growthnatives.co"},{"value":444,"label":"ekamonkar.singh@growthnatives.co"},{"value":445,"label":"anmol.sharma@growthnatives.co"},{"value":447,"label":"arshdeep.singh@networkon.io"},{"value":448,"label":"karamjeet@diggrowth.com"},{"value":450,"label":"ashish.chauhan@growthnatives.com"},{"value":452,"label":"baljinder.singh@growthnatives.com"},{"value":453,"label":"nikhil.singh@growthnatives.com"},{"value":455,"label":"gaurav.saini@growthnatives.co"},{"value":457,"label":"ajay.sharma@growthnatives.co"},{"value":458,"label":"akanksha.thakur@growthnatives.com"},{"value":460,"label":"aastha.mittal@growthnatives.com"},{"value":462,"label":"anupriya.goyal@growthnatives.com"},{"value":463,"label":"aarohi.tiwari@growthnatives.com"},{"value":465,"label":"rajnish.rajan@growthnatives.co"},{"value":466,"label":"shivam.joshi@growthnatives.co"},{"value":468,"label":"shivam.kathpal@growthnatives.com"},{"value":470,"label":"harshika.chadha@growthnatives.com"},{"value":471,"label":"anuradha.misra@growthnatives.com"},{"value":473,"label":"vaibhav.kumar@growthnatives.com"},{"value":425,"label":"sonu.yadav@growthnatives.co"},{"value":427,"label":"shaini.agnihotri@growthnatives.com"},{"value":430,"label":"kamal.sharma@growthnatives.co"},{"value":433,"label":"ishika.middha@growthnatives.com"},{"value":435,"label":"akshita.khanna@growthnatives.co"},{"value":438,"label":"manica.kwatra@growthnatives.co"},{"value":441,"label":"shreya.narula@growthnatives.co"},{"value":443,"label":"varun.kashyap@growthnatives.co"},{"value":446,"label":"abhinav.dass@growthnatives.com"},{"value":449,"label":"rehmat@growthnatives.com"},{"value":451,"label":"mehak.hasija@growthnatives.com"},{"value":454,"label":"anant.chaudhary@growthnatives.com"},{"value":456,"label":"gurdev.singh@growthnatives.co"},{"value":459,"label":"ankit.chauhan@growthnatives.com"},{"value":461,"label":"mohit.dharwal@growthnatives.com"},{"value":464,"label":"rishab.sharma@growthnatives.co"},{"value":467,"label":"piyush.bageshwar@growthnatives.co"},{"value":469,"label":"hitika.saini@diggrowth.com"},{"value":472,"label":"anjali.gupta@growthnatives.com"},{"value":476,"label":"pawan.joshi@growthnatives.co"},{"value":477,"label":"bhavya.soni@growthnatives.co"},{"value":479,"label":"rahul.verma@growthnatives.co"},{"value":481,"label":"akanksha.dass@growthnatives.com"},{"value":482,"label":"akshay.singh@growthnatives.com"},{"value":484,"label":"saloni.apoorva@growthnatives.com"},{"value":486,"label":"sneha.kumari@growthnatives.co"},{"value":487,"label":"mehakpreet.kaur@growthnatives.co"},{"value":489,"label":"rimpy.sindhu@growthnatives.co"},{"value":491,"label":"sachin@growthnatives.co"},{"value":492,"label":"amman.masood@growthnatives.co"},{"value":494,"label":"akshay.kurhade@growthnatives.com"},{"value":495,"label":"mahika.aggarwal@growthnatives.com"},{"value":497,"label":"jashanpreet.singh@growthnatives.co"},{"value":499,"label":"guntas.dhillon@growthnatives.co"},{"value":500,"label":"riya.sharma@diggrowth.com"},{"value":502,"label":"shami.kumar@growthnatives.com"},{"value":474,"label":"sukhpreet.kaur@growthnatives.com"},{"value":475,"label":"shahzad.musawwir@growthnatives.com"},{"value":478,"label":"mohit.kumar@growthnatives.com"},{"value":480,"label":"nitish.gupta@growthnatives.co"},{"value":483,"label":"surya.gehlot@growthnatives.co"},{"value":485,"label":"anjali.rajput@growthnatives.com"},{"value":488,"label":"diksha.gathania@growthnatives.co"},{"value":490,"label":"aviral.srivastav@growthnatives.co"},{"value":493,"label":"richa.bhardwaj@growthnatives.co"},{"value":496,"label":"ankit.kumar@growthnatives.co"},{"value":498,"label":"deepanshi.arora@growthnatives.com"},{"value":501,"label":"lakshay@growthnatives.co"},{"value":503,"label":"devesh.saxena@growthnatives.com"},{"value":504,"label":"kartikey.khosla@growthnatives.com"},{"value":505,"label":"tejinder.singh@growthnatives.com"},{"value":506,"label":"arjun.thakur@growthnatives.com"},{"value":507,"label":"nitin@growthnatives.com"},{&